Moving project files into subdirs

This commit is contained in:
Jonathan Turner
2009-05-28 18:13:06 +00:00
parent f77eb930ed
commit bf7fba3646
6 changed files with 100 additions and 20 deletions

15
boxedcpp/CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 2.6)
project(boxedcpp)
SET (CMAKE_BUILD_TYPE gdb)
SET (CMAKE_C_FLAGS_GDB " -Wall -ggdb")
SET (CMAKE_CXX_FLAGS_GDB " -Wall -ggdb")
find_package( Boost 1.36.0 COMPONENTS regex)
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
include_directories(.)
add_executable(boxedcpp_test test.cpp)
endif()