File: CMakeLists.txt

package info (click to toggle)
cegui-mk2 0.8.7%2Bgit20220615-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 57,816 kB
  • sloc: cpp: 306,263; python: 1,175; ansic: 812; sh: 616; xml: 191; java: 162; makefile: 21
file content (14 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# provide access to common test files
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")

if (CEGUI_BUILD_TESTS)
    add_subdirectory(unit)
endif()

if (CEGUI_BUILD_PERFORMANCE_TESTS)
    add_subdirectory(performance)
endif()

if (CEGUI_BUILD_DATAFILES_TEST)
    add_test(NAME CEGUIDatafilesTest COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/CEGUIDatafilesTest.py)
endif()