mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
18 lines
281 B
CMake
18 lines
281 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
|
|
os.cpp
|
|
qd.cpp
|
|
sane.cpp
|
|
)
|
|
|
|
|
|
|
|
add_library(TOOLBOX_LIB ${TOOLBOX_SRC}) |