mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 12:07:13 +01:00
6 lines
233 B
CMake
6 lines
233 B
CMake
|
# Create the JSMN library
|
||
|
add_library(JSMN STATIC include/jsmn.h jsmn.c)
|
||
|
# Library includes
|
||
|
target_include_directories(JSMN PRIVATE ${CMAKE_CURRENT_LIST_DIR})
|
||
|
target_include_directories(JSMN PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
|