-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
53 lines (46 loc) · 1.83 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
cmake_minimum_required(VERSION 2.6)
project(graphics)
include_directories(include)
file(GLOB headers
cmake/modules/*
include/andres/*.hxx
include/andres/graphics/*.hxx
)
enable_testing()
##############################################################################
# GNU g++ specific settings
##############################################################################
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-std=c++11)
endif()
##############################################################################
# HDF5
##############################################################################
find_package(HDF5)
if(HDF5_FOUND)
include_directories(${HDF5_INCLUDE_DIR})
endif()
##############################################################################
# OpenGL
##############################################################################
find_package(OpenGL)
if(OpenGL_FOUND)
include_directories(${OPENGL_INCLUDE_DIR})
endif()
##############################################################################
# GLUT
##############################################################################
find_package(GLUT)
if(GLUT_FOUND)
include_directories(${GLUT_INCLUDE_DIR})
endif()
##############################################################################
# targets: graphics
##############################################################################
if(GLUT_FOUND AND HDF5_FOUND)
add_executable(test-graphics-hdf5 src/andres/graphics/unittest/graphics-hdf5.cxx ${headers})
target_link_libraries(test-graphics-hdf5 ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} ${HDF5_LIBRARIES})
add_test(test-graphics-hdf5 test-graphics-hdf5)
add_executable(viewer-opengl src/andres/graphics/viewer-opengl.cxx ${headers})
target_link_libraries(viewer-opengl ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} ${HDF5_LIBRARIES})
endif()