mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
15 lines
255 B
CMake
15 lines
255 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
|
|
toolbox.cpp
|
|
rm.cpp
|
|
mm.cpp
|
|
)
|
|
|
|
|
|
|
|
add_library(TOOLBOX_LIB ${TOOLBOX_SRC}) |