mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
19 lines
No EOL
452 B
CMake
19 lines
No EOL
452 B
CMake
|
|
include_directories(.)
|
|
|
|
if(KERNELMODE)
|
|
add_definitions(-DKERNELMODE)
|
|
endif()
|
|
|
|
set(xnucxx.SOURCE_FILE_LIST
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteMemOpt.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteObject.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteIterator.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteCollection.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteMutableBuffer.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/LiteMutableArray.cc
|
|
)
|
|
|
|
add_library(xnucxx STATIC
|
|
${xnucxx.SOURCE_FILE_LIST}
|
|
) |