* Move app/service code from tactility-core to tactility * fix formatting * updated dev docs
11 lines
266 B
CMake
11 lines
266 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
file(GLOB SOURCES "src/*.c")
|
|
add_executable(app-sim ${SOURCES})
|
|
target_link_libraries(app-sim PRIVATE tactility)
|
|
target_link_libraries(app-sim PRIVATE tactility-core)
|
|
|
|
add_definitions(-D_Nullable=)
|
|
add_definitions(-D_Nonnull=)
|
|
|