mirror of https://github.com/axmolengine/axmol.git
13 lines
331 B
CMake
13 lines
331 B
CMake
set(target_name JSONDefault)
|
|
|
|
FILE(GLOB JSON_DEFAULT_HEADER src/JSONDefault/*.h)
|
|
FILE(GLOB JSON_DEFAULT_SOURCE src/JSONDefault/*.cpp)
|
|
|
|
add_library(${target_name} STATIC
|
|
${JSON_DEFAULT_HEADER}
|
|
${JSON_DEFAULT_SOURCE})
|
|
|
|
target_include_directories(${target_name} PUBLIC src)
|
|
|
|
setup_ax_extension_config(${target_name})
|