comparison Resources/CMake/GlewConfiguration.cmake @ 613:412a2d01a189

automatic initialization of glew
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Apr 2019 16:44:23 +0200
parents
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
612:ba72bffceb7d 613:412a2d01a189
1 # Stone of Orthanc
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
3 # Department, University Hospital of Liege, Belgium
4 # Copyright (C) 2017-2019 Osimis S.A., Belgium
5 #
6 # This program is free software: you can redistribute it and/or
7 # modify it under the terms of the GNU Affero General Public License
8 # as published by the Free Software Foundation, either version 3 of
9 # the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19
20 if (STATIC_BUILD OR NOT USE_SYSTEM_GLEW)
21 SET(GLEW_SOURCES_DIR ${CMAKE_BINARY_DIR}/glew-2.1.0)
22 SET(GLEW_URL "http://orthanc.osimis.io/ThirdPartyDownloads/glew-2.1.0.tgz")
23 SET(GLEW_MD5 "b2ab12331033ddfaa50dc39345343980")
24 DownloadPackage(${GLEW_MD5} ${GLEW_URL} "${GLEW_SOURCES_DIR}")
25
26 set(GLEW_SOURCES
27 ${GLEW_SOURCES_DIR}/src/glew.c
28 )
29
30 include_directories(${GLEW_SOURCES_DIR}/include)
31
32 add_definitions(
33 -DGLEW_STATIC=1
34 )
35
36 else()
37 include(FindGLEW)
38 if (NOT GLEW_FOUND)
39 message(FATAL_ERROR "Please install the libglew-dev package")
40 endif()
41
42 include_directories(${GLEW_INCLUDE_DIRS})
43 link_libraries(${GLEW_LIBRARIES})
44 endif()