mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
14 lines
248 B
CMake
14 lines
248 B
CMake
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||
|
|
||
|
set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ -Wall -Wno-deprecated-declarations -g")
|
||
|
|
||
|
add_definitions(-I ${CMAKE_SOURCE_DIR}/)
|
||
|
|
||
|
set(TOOLBOX_SRC
|
||
|
dispatch.cpp
|
||
|
rm.cpp
|
||
|
)
|
||
|
|
||
|
|
||
|
|
||
|
add_library(TOOLBOX_LIB ${TOOLBOX_SRC})
|