Files
bs_explorer/bs/CMakeLists.txt

15 lines
267 B
CMake

file(GLOB_RECURSE ALL_SOURCES "*.c")
# Application configuration
add_executable(
bs
${ALL_SOURCES}
)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../modules)
# linking configuration
target_link_libraries(
bs PRIVATE ${BS_MODULES} readline ncurses
)