Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/test/CMakeLists.txt @ 9550

Last change on this file since 9550 was 9473, checked in by landauf, 11 years ago

moved common cmake config for src/ and test/ to SourceConfig.cmake

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1 #
2 #             ORXONOX - the hottest 3D action shooter ever to exist
3 #                             > www.orxonox.net <
4 #
5 #        This program is free software; you can redistribute it and/or
6 #         modify it under the terms of the GNU General Public License
7 #        as published by the Free Software Foundation; either version 2
8 #            of the License, or (at your option) any later version.
9 #
10 #       This program is distributed in the hope that it will be useful,
11 #        but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #                 GNU General Public License for more details.
14 #
15 #   You should have received a copy of the GNU General Public License along
16 #      with this program; if not, write to the Free Software Foundation,
17 #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 #
19 #
20 #  Author:
21 #    Fabian 'x3n' Landau
22 #  Description:
23 #    Configures the compilers and sets build options.
24 #
25
26# Required macros and functions
27INCLUDE(FlagUtilities)
28INCLUDE(TargetUtilities)
29
30INCLUDE(../src/SourceConfig.cmake)
31
32################ Testing Configuration ################
33
34ENABLE_TESTING()
35
36ADD_CUSTOM_TARGET(test COMMAND ${CMAKE_CTEST_COMMAND} "$(ARGS)" COMMENT "Running tests")
37
38CONFIGURE_FILE("CTestCustom.cmake" "CTestCustom.cmake" @ONLY)
39
40############## Include Directories ##############
41
42INCLUDE_DIRECTORIES(
43  ../src/external
44  ../src/libraries
45  ../src/orxonox
46  ../src/modules
47  ../src/external/gtest/include
48  ../src/external/gmock/include
49  ${CMAKE_BINARY_DIR}/src
50)
51
52################ Sub Directories ################
53
54ADD_SUBDIRECTORY(util)
Note: See TracBrowser for help on using the repository browser.