diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 085b55a..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -#---------------------------------------------------------------------------- -# This file was automatically generated from the original CMakeLists.txt file -# Add a variable to hold the headers for the library -set (lib_headers - wave.hpp - wave -) - -# Add a library target to the build system -boost_library_project( - wave - SRCDIRS src - TESTDIRS test - HEADERS ${lib_headers} - # DOCDIRS - DESCRIPTION "A standards-conformant and highly-configurable implementation of the mandated C99/C++ preprocessor functionality packed behind an easy to use iterator interface." - MODULARIZED - AUTHORS "Hartmut Kaiser " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index 32a3502..0000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(wave DEPENDS filesystem program_options spirit thread intrusive) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt deleted file mode 100644 index 0e354bd..0000000 --- a/src/CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -boost_add_library( - boost_wave - instantiate_cpp_exprgrammar.cpp - instantiate_cpp_grammar.cpp - instantiate_cpp_literalgrs.cpp - instantiate_defined_grammar.cpp - instantiate_predef_macros.cpp - instantiate_re2c_lexer.cpp - instantiate_re2c_lexer_str.cpp - token_ids.cpp - wave_config_constant.cpp - cpplexer/re2clex/aq.cpp - cpplexer/re2clex/cpp_re.cpp - DEPENDS boost_filesystem boost_thread boost_date_time - SHARED_COMPILE_FLAGS "-DBOOST_ALL_DYN_LINK=1" - NO_SINGLE_THREADED -) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 880cf8d..0000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -message(STATUS "wave tests need love") - diff --git a/tool/CMakeLists.txt b/tool/CMakeLists.txt deleted file mode 100644 index d201c51..0000000 --- a/tool/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -# DPG: tools need modular dependencies just like libraries have -# them. For now, we just include the appropriate directories. - -include_directories( - ${CMAKE_SOURCE_DIR}/libs/algorithm/include - ${CMAKE_SOURCE_DIR}/libs/any/include - ${CMAKE_SOURCE_DIR}/libs/bind/include - ${CMAKE_SOURCE_DIR}/libs/concept/include - ${CMAKE_SOURCE_DIR}/libs/concept_check/include - ${CMAKE_SOURCE_DIR}/libs/config/include - ${CMAKE_SOURCE_DIR}/libs/date_time/include - ${CMAKE_SOURCE_DIR}/libs/detail/include - ${CMAKE_SOURCE_DIR}/libs/exception/include - ${CMAKE_SOURCE_DIR}/libs/filesystem/include - ${CMAKE_SOURCE_DIR}/libs/function/include - ${CMAKE_SOURCE_DIR}/libs/integer/include - ${CMAKE_SOURCE_DIR}/libs/intrusive/include - ${CMAKE_SOURCE_DIR}/libs/io/include - ${CMAKE_SOURCE_DIR}/libs/iterator/include - ${CMAKE_SOURCE_DIR}/libs/mpl/include - ${CMAKE_SOURCE_DIR}/libs/multi_index/include - ${CMAKE_SOURCE_DIR}/libs/optional/include - ${CMAKE_SOURCE_DIR}/libs/preprocessor/include - ${CMAKE_SOURCE_DIR}/libs/program_options/include - ${CMAKE_SOURCE_DIR}/libs/pool/include - ${CMAKE_SOURCE_DIR}/libs/range/include - ${CMAKE_SOURCE_DIR}/libs/serialization/include - ${CMAKE_SOURCE_DIR}/libs/smart_ptr/include - ${CMAKE_SOURCE_DIR}/libs/spirit/include - ${CMAKE_SOURCE_DIR}/libs/static_assert/include - ${CMAKE_SOURCE_DIR}/libs/system/include - ${CMAKE_SOURCE_DIR}/libs/thread/include - ${CMAKE_SOURCE_DIR}/libs/timer/include - ${CMAKE_SOURCE_DIR}/libs/tuple/include - ${CMAKE_SOURCE_DIR}/libs/type_traits/include - ${CMAKE_SOURCE_DIR}/libs/utility/include - ${CMAKE_SOURCE_DIR}/libs/wave/include -) - -boost_add_executable(wave cpp.cpp - DEPENDS boost_wave boost_program_options boost_filesystem boost_serialization - MULTI_THREADED - )