From a8ba63277e9f9867c3e2b8e6686e75510534b792 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Wed, 27 May 2009 01:12:39 +0000 Subject: [PATCH] Moved typelesscpp into boxedcpp --- CMakeLists.txt | 4 ++-- {typelesscpp => boxedcpp}/boxed_value.hpp | 0 {typelesscpp => boxedcpp}/boxedcpp.hpp | 0 {typelesscpp => boxedcpp}/proxy_constructors.hpp | 0 {typelesscpp => boxedcpp}/proxy_functions.hpp | 0 {typelesscpp => boxedcpp}/test.cpp | 0 {typelesscpp => boxedcpp}/type_info.hpp | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {typelesscpp => boxedcpp}/boxed_value.hpp (100%) rename {typelesscpp => boxedcpp}/boxedcpp.hpp (100%) rename {typelesscpp => boxedcpp}/proxy_constructors.hpp (100%) rename {typelesscpp => boxedcpp}/proxy_functions.hpp (100%) rename {typelesscpp => boxedcpp}/test.cpp (100%) rename {typelesscpp => boxedcpp}/type_info.hpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index e190d3d..6d5df83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() diff --git a/typelesscpp/boxed_value.hpp b/boxedcpp/boxed_value.hpp similarity index 100% rename from typelesscpp/boxed_value.hpp rename to boxedcpp/boxed_value.hpp diff --git a/typelesscpp/boxedcpp.hpp b/boxedcpp/boxedcpp.hpp similarity index 100% rename from typelesscpp/boxedcpp.hpp rename to boxedcpp/boxedcpp.hpp diff --git a/typelesscpp/proxy_constructors.hpp b/boxedcpp/proxy_constructors.hpp similarity index 100% rename from typelesscpp/proxy_constructors.hpp rename to boxedcpp/proxy_constructors.hpp diff --git a/typelesscpp/proxy_functions.hpp b/boxedcpp/proxy_functions.hpp similarity index 100% rename from typelesscpp/proxy_functions.hpp rename to boxedcpp/proxy_functions.hpp diff --git a/typelesscpp/test.cpp b/boxedcpp/test.cpp similarity index 100% rename from typelesscpp/test.cpp rename to boxedcpp/test.cpp diff --git a/typelesscpp/type_info.hpp b/boxedcpp/type_info.hpp similarity index 100% rename from typelesscpp/type_info.hpp rename to boxedcpp/type_info.hpp