mpw/bin/CMakeLists.txt

13 lines
388 B
CMake
Raw Normal View History

2013-02-06 04:41:11 +00:00
#set(CMAKE_C_COMPILER "clang")
#set(CMAKE_CXX_COMPILER "clang++")
2013-02-07 04:44:12 +00:00
set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ -Wall -Wno-deprecated-declarations -g")
2013-02-06 04:41:11 +00:00
SET(CMAKE_EXE_LINKER_FLAGS "-framework Carbon")
2013-02-07 00:11:32 +00:00
add_definitions(-I ${CMAKE_SOURCE_DIR}/)
add_executable(mpw loader.cpp)
target_link_libraries(mpw CPU_LIB)
2013-02-07 04:44:12 +00:00
target_link_libraries(mpw TOOLBOX_LIB)
2013-02-08 03:49:20 +00:00
target_link_libraries(mpw MPLITE_LIB)