11 lines
139 B
CMake
11 lines
139 B
CMake
|
|
# Application configuration
|
|
add_executable(
|
|
bs
|
|
main.c
|
|
)
|
|
|
|
# linking configuration
|
|
target_link_libraries(
|
|
bs PRIVATE jtag_core
|
|
) |