]> git.cworth.org Git - apitrace-tests/blob - CMakeLists.txt
Remove the old test suite.
[apitrace-tests] / CMakeLists.txt
1 cmake_minimum_required (VERSION 2.8)
2
3 project (apitrace-tests)
4
5 # Set default built type
6 if (NOT CMAKE_BUILD_TYPE)
7    set (CMAKE_BUILD_TYPE Debug
8        CACHE
9        STRING "Choose the build type, options are: None, Debug, Release, RelWithDebInfo, or MinSizeRel."
10        FORCE)
11 endif (NOT CMAKE_BUILD_TYPE)
12
13 include (CMakeParseArguments)
14
15 find_package (OpenGL REQUIRED)
16 find_package (GLUT)
17
18 find_library (GLEW_glew_LIBRARY GLEW
19         /usr/lib
20 )
21
22 find_path (GLEW_INCLUDE_DIR GL/glew.h
23       /usr/include/GL
24 )
25
26 if (UNIX)
27         link_libraries(m)
28 endif (UNIX)
29
30 if (WIN32)
31         # Nobody likes to include windows.h:
32         # - Microsoft's GL/gl.h header depends on windows.h but doesn't include it;
33         # - GLEW temporarily defines the necessary defines but undefines them later
34         # - certain GLUT distributions don't include it;
35         # - most of our programs are meant to be portable so don't include it.
36         #
37         # We could try to replicate the windows.h definitions required by
38         # GL/gl.h, but the build time savings don't compensate the constant
39         # headaches that brings, so instead we force windows.h to be included
40         # on every file.
41         if (MSVC)
42                 add_definitions (-FIwindows.h)
43         else (MSVC)
44                 add_definitions (--include windows.h)
45         endif (MSVC)
46
47         # Don't define min/max macros
48         add_definitions (-DNOMINMAX)
49
50         # MSVC & MinGW only define & use APIENTRY
51         add_definitions (-DGLAPIENTRY=__stdcall)
52 endif ()
53
54 if (MSVC)
55         # Enable math constants defines
56         add_definitions (-D_USE_MATH_DEFINES)
57
58         # Silence several MSVC pedantic warnings
59         add_definitions (-D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS)
60         add_definitions (-D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS)
61         add_definitions (-wd4244) # conversion' conversion from 'type1' to 'type2', possible loss of data
62 endif ()
63
64 if (NOT APITRACE_BINARY_DIR) 
65     set (APITRACE_BINARY_DIR "${CMAKE_BINARY_DIR}/.." CACHE PATH "apitrace build directory")
66 endif ()
67 if (NOT EXISTS ${APITRACE_BINARY_DIR})
68     message (SEND_ERROR "Invalid APITRACE_BINARY_DIR")
69 endif ()
70
71 enable_testing()
72
73 add_subdirectory (apps)
74