4 lines
147 B
CMake
4 lines
147 B
CMake
file(GLOB src_app ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
|
add_executable(app_data_template ${src_app})
|
|
target_link_libraries(app_data_template ${libsdk})
|