From 344ce6abf9584a5e082e3851bf073b911ac08acf Mon Sep 17 00:00:00 2001 From: Mike Dev Date: Wed, 17 Oct 2018 12:13:45 +0200 Subject: [PATCH] [CMake/CI] Use config_info.cpp for cmake self test --- test/CMakeLists.txt | 2 +- test/cmake_self_test.cpp | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 test/cmake_self_test.cpp diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 2ec107e..b56c870 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,6 +11,6 @@ project( BoostPreprocessorCMakeSelfTest ) add_subdirectory( .. ${CMAKE_CURRENT_BINARY_DIR}/boost_preprocessor ) -add_executable( boost_preprocessor_cmake_self_test cmake_self_test.cpp ) +add_executable( boost_preprocessor_cmake_self_test config_info.cpp ) target_link_libraries( boost_preprocessor_cmake_self_test Boost::preprocessor ) diff --git a/test/cmake_self_test.cpp b/test/cmake_self_test.cpp deleted file mode 100644 index 2d7b167..0000000 --- a/test/cmake_self_test.cpp +++ /dev/null @@ -1,3 +0,0 @@ -#include - -int main() {}