mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
6 lines
247 B
CMake
6 lines
247 B
CMake
# Create the SAJSON library
|
|
add_library(SAJSON STATIC include/sajson.h sajson.cpp)
|
|
# Library includes
|
|
target_include_directories(SAJSON PRIVATE ${CMAKE_CURRENT_LIST_DIR})
|
|
target_include_directories(SAJSON PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
|