Moved typelesscpp into boxedcpp

This commit is contained in:
Jason Turner
2009-05-27 01:12:39 +00:00
parent 079f3478f8
commit a8ba63277e
7 changed files with 2 additions and 2 deletions

View File

@@ -9,10 +9,10 @@ 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(langkit typelesscpp)
include_directories(langkit boxedcpp)
add_executable(langkit_test langkit/main.cpp langkit/langkit_lexer.cpp langkit/langkit_parser.cpp)
target_link_libraries(langkit_test ${Boost_LIBRARIES})
add_executable(typelesscpp_test typelesscpp/test.cpp)
add_executable(boxedcpp_test boxedcpp/test.cpp)
endif()