mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-27 07:29:52 +08:00
eeacbd26c8
Removed all configurations that explicitly test or set the c++ standard flags. The only place the standard is now configured is at the top of the main `CMakeLists.txt` file, which can easily be updated (e.g. if we decide to move to c++14+). This can also be set via command-line using ``` > cmake -DCMAKE_CXX_STANDARD 14 ``` Kept the `EIGEN_TEST_CXX11` flag for now - that still controls whether to build/run the `cxx11_*` tests. We will likely end up renaming these tests and removing the `CXX11` subfolder.
32 lines
1.2 KiB
CMake
32 lines
1.2 KiB
CMake
file(GLOB snippets_SRCS "*.cpp")
|
|
|
|
add_custom_target(all_snippets)
|
|
|
|
foreach(snippet_src ${snippets_SRCS})
|
|
get_filename_component(snippet ${snippet_src} NAME_WE)
|
|
set(compile_snippet_target compile_${snippet})
|
|
set(compile_snippet_src ${compile_snippet_target}.cpp)
|
|
|
|
file(READ ${snippet_src} snippet_source_code)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/compile_snippet.cpp.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/${compile_snippet_src})
|
|
add_executable(${compile_snippet_target}
|
|
${CMAKE_CURRENT_BINARY_DIR}/${compile_snippet_src})
|
|
if(EIGEN_STANDARD_LIBRARIES_TO_LINK_TO)
|
|
target_link_libraries(${compile_snippet_target} ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
|
endif()
|
|
|
|
if(${snippet_src} MATCHES "deprecated")
|
|
set_target_properties(${compile_snippet_target} PROPERTIES COMPILE_FLAGS "-DEIGEN_NO_DEPRECATED_WARNING")
|
|
endif()
|
|
add_custom_command(
|
|
TARGET ${compile_snippet_target}
|
|
POST_BUILD
|
|
COMMAND ${compile_snippet_target}
|
|
ARGS >${CMAKE_CURRENT_BINARY_DIR}/${snippet}.out
|
|
)
|
|
add_dependencies(all_snippets ${compile_snippet_target})
|
|
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${compile_snippet_src}
|
|
PROPERTIES OBJECT_DEPENDS ${snippet_src})
|
|
endforeach()
|