Workign on stuff

This commit is contained in:
John
2025-04-27 11:27:02 +12:00
parent e3e8e5f7d3
commit 8c21260e49
8 changed files with 450 additions and 100 deletions

View File

@ -28,7 +28,6 @@ configure_file(
)
# Find required packages
find_package(Curses REQUIRED)
find_package(TBB REQUIRED)
# Auto-detect source files
@ -42,12 +41,10 @@ add_executable(dropshell ${SOURCES})
target_include_directories(dropshell PRIVATE
src
${CMAKE_CURRENT_BINARY_DIR}/src
${CURSES_INCLUDE_DIRS}
)
# Link libraries
target_link_libraries(dropshell PRIVATE
${CURSES_LIBRARIES}
TBB::tbb
)