Build fix. Needed to add include paths to build

This commit is contained in:
Jonathan Turner 2009-05-26 20:20:07 +00:00
parent 7f628d9130
commit 8f6f4b81db

View File

@ -9,9 +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)
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(typelesscpp_test typelesscpp/test.cpp)
endif()