22 lines
316 B
CMake
22 lines
316 B
CMake
add_executable(
|
|
example
|
|
main.c
|
|
)
|
|
set_target_properties(
|
|
example
|
|
PROPERTIES
|
|
C_STANDARD 23
|
|
C_STANDARD_REQUIRED ON
|
|
C_EXTENSIONS OFF
|
|
)
|
|
target_link_libraries(
|
|
example
|
|
PRIVATE
|
|
json
|
|
)
|
|
target_include_directories(
|
|
example
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}
|
|
)
|
|
|