From 8f6f4b81db06a5269718bf53d5399f57b6fb8404 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 26 May 2009 20:20:07 +0000 Subject: [PATCH] Build fix. Needed to add include paths to build --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cc5a6ba..e190d3d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()