From: Denis Davydov Date: Thu, 19 Oct 2017 13:19:27 +0000 (+0200) Subject: extend example of user projects testsuite to contain header files X-Git-Tag: v9.0.0-rc1~888^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b1ac597afc458140780ae892ababf4e155c9287;p=dealii.git extend example of user projects testsuite to contain header files --- diff --git a/doc/users/testsuite.html b/doc/users/testsuite.html index 667f3b4d3a..e0cd571493 100644 --- a/doc/users/testsuite.html +++ b/doc/users/testsuite.html @@ -173,6 +173,8 @@ src/CMakeLists.txt src/step.cc src/support.cc +include/support.h + tests/step/CMakeLists tests/step/my_test_1.prm tests/step/my_test_1.output @@ -200,6 +202,8 @@ DEAL_II_INITIALIZE_CACHED_VARIABLES() PROJECT(step) ENABLE_TESTING() +INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include) + ADD_SUBDIRECTORY(src) ADD_SUBDIRECTORY(tests/step) ADD_SUBDIRECTORY(tests/support)