source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/CMakeLists.txt @ 1716

Last change on this file since 1716 was 1716, checked in by yushan, 5 years ago

Generic_testcase : Tests can be launched via job script now. llsubmit job.sh in root or test folder

File size: 443 bytes
Line 
1cmake_minimum_required(VERSION 2.8.12.2)
2
3project(generic_testcase)
4
5
6enable_testing()
7
8add_subdirectory(test_function)
9add_subdirectory(test_axis_algo)
10add_subdirectory(test_domain_algo)
11add_subdirectory(test_grid_algo)
12add_subdirectory(test_scalar_algo)
13
14
15add_custom_target("report")
16add_custom_command(TARGET "report"
17        POST_BUILD
18        COMMAND rm -f report.txt
19        COMMAND cat */*/report.txt > report.txt
20        COMMAND cat */report.txt >> report.txt)
Note: See TracBrowser for help on using the repository browser.