16 lines
379 B
CMake
16 lines
379 B
CMake
|
|
file(GLOB_RECURSE ALL_SOURCES "src/*.c")
|
|
|
|
# Application configuration
|
|
add_executable(
|
|
bs
|
|
${ALL_SOURCES}
|
|
)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../libs)
|
|
|
|
# linking configuration
|
|
target_link_libraries(
|
|
bs PRIVATE script jtag_core bsdl_parser bus_over_jtag drivers os_interface natsort readline ncurses
|
|
) |