mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-02 12:17:10 -05:00
11 lines
206 B
Text
11 lines
206 B
Text
|
include_directories(.)
|
||
|
|
||
|
set(SOURCE_FILE_LIST
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/cxxlogging.cc
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/logging.c
|
||
|
)
|
||
|
|
||
|
add_library(logging STATIC
|
||
|
${SOURCE_FILE_LIST}
|
||
|
${SOURCE_HEADER_LIST}
|
||
|
)
|