From 8a70f9923935f2b08cb1e6fdd9aecc77a57bd5f4 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 3 Sep 2013 22:48:38 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30584 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/all-headers/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/all-headers/CMakeLists.txt b/tests/all-headers/CMakeLists.txt index 2c7bcb6af1..2288492ea4 100644 --- a/tests/all-headers/CMakeLists.txt +++ b/tests/all-headers/CMakeLists.txt @@ -13,8 +13,13 @@ FILE(GLOB_RECURSE _header FOREACH(_full_file ${_header}) GET_FILENAME_COMPONENT(_file ${_full_file} NAME) + + # TODO: A more sophisticated way to get the relative include path: GET_FILENAME_COMPONENT(_path ${_full_file} PATH) GET_FILENAME_COMPONENT(_path ${_path} NAME) + IF("${_path}" STREQUAL "std_cxx1x") + SET(_path "base/std_cxx1x") + ENDIF() FOREACH(_build ${DEAL_II_BUILD_TYPES}) STRING(TOLOWER ${_build} _build_lowercase) -- 2.39.5