mpw/CMakeLists.txt

9 lines
217 B
CMake
Raw Normal View History

2013-02-06 04:41:11 +00:00
set(CMAKE_C_COMPILER "clang")
set(CMAKE_CXX_COMPILER "clang++")
set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++ -Wall -g")
project(mpw)
cmake_minimum_required(VERSION 2.6)
add_subdirectory(bin)
2013-02-06 04:58:07 +00:00
add_subdirectory(cpu)