Blame view

CMakeLists.txt 2.56 KB
18fad6bc   David Mayerich   big fixes and cha...
1
  #Specify the version being used as well as the language
66c20862   pranathivemuri   external librarie...
2
3
4
  cmake_minimum_required(VERSION 2.8.11)
  
  #Name your project here
18fad6bc   David Mayerich   big fixes and cha...
5
  project(netmets)
66c20862   pranathivemuri   external librarie...
6
7
8
9
  
  #set the module directory
  set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}")
  
66c20862   pranathivemuri   external librarie...
10
  #find the STIM library
18fad6bc   David Mayerich   big fixes and cha...
11
12
13
14
15
16
17
18
19
  find_package(STIM)
  
  #if the STIM library isn't found, download it
  if(NOT STIM_INCLUDE_DIRS)
  	file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/stimlib)	#remove the stimlib directory if it exists
  	set(STIM_GIT "https://git.stim.ee.uh.edu/codebase/stimlib.git")
  	execute_process(COMMAND git clone --depth 1 ${STIM_GIT} WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
  	set(STIM_INCLUDE_DIRS "${CMAKE_BINARY_DIR}/stimlib" CACHE TYPE PATH)
  endif(NOT STIM_INCLUDE_DIRS)
66c20862   pranathivemuri   external librarie...
20
21
22
23
  
  #find BOOST
  find_package(Boost REQUIRED)
  
627eed8d   David Mayerich   added a GUI for d...
24
25
26
27
  #find the GLUT library for visualization
  find_package(OpenGL REQUIRED)
  find_package(GLUT REQUIRED)
  
66c20862   pranathivemuri   external librarie...
28
29
30
31
32
33
  #find the pthreads package
  find_package(Threads)
  
  #find the X11 package
  find_package(X11)
  
66c20862   pranathivemuri   external librarie...
34
35
36
  #find the Approximate Nearest Neighbor Library
  find_package(ANN REQUIRED)
  
18fad6bc   David Mayerich   big fixes and cha...
37
  #build the executable in the binary directory on MS Visual Studio
a0048e31   David Mayerich   added several tes...
38
39
40
41
42
  if ( MSVC )
  	SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${OUTPUT_DIRECTORY}")
  	SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${OUTPUT_DIRECTORY}")
  endif ( MSVC )
  
66c20862   pranathivemuri   external librarie...
43
  include_directories(
627eed8d   David Mayerich   added a GUI for d...
44
45
  					${OpenGL_INCLUDE_DIRS}
  					${GLUT_INCLUDE_DIR}
66c20862   pranathivemuri   external librarie...
46
  					${STIM_INCLUDE_DIRS}
1b78fd76   David Mayerich   edited the FindGL...
47
            ${ANN_INCLUDE_DIR}
66c20862   pranathivemuri   external librarie...
48
49
50
51
52
53
  					${Boost_INCLUDE_DIR}
  					)
  
  #Assign source files to the appropriate variables
  file(GLOB SRC_CPP "*.cpp")
  file(GLOB SRC_H "*.h")
66c20862   pranathivemuri   external librarie...
54
55
  
  #create an executable file
a0048e31   David Mayerich   added several tes...
56
57
58
  add_executable(netmets
  				${SRC_H}
  				${SRC_CPP}
66c20862   pranathivemuri   external librarie...
59
60
61
62
  				)
  
  #set the link libraries
  target_link_libraries(netmets
627eed8d   David Mayerich   added a GUI for d...
63
64
  						${OpenGL_LIBRARIES}
  						${GLUT_LIBRARIES}
66c20862   pranathivemuri   external librarie...
65
  						${CMAKE_THREAD_LIBS_INIT}
627eed8d   David Mayerich   added a GUI for d...
66
              			${ANN_LIBRARY}
66c20862   pranathivemuri   external librarie...
67
68
69
  						${X11_LIBRARIES}
  		  )
  
a0048e31   David Mayerich   added several tes...
70
71
72
73
74
75
76
77
78
79
80
81
  #set up copying data files
  configure_file(data/00_GT.obj ${CMAKE_CURRENT_BINARY_DIR}/00_GT.obj @ONLY)
  configure_file(data/00_T.obj ${CMAKE_CURRENT_BINARY_DIR}/00_T.obj @ONLY)
  configure_file(data/01_GT.obj ${CMAKE_CURRENT_BINARY_DIR}/01_GT.obj @ONLY)
  configure_file(data/01_T.obj ${CMAKE_CURRENT_BINARY_DIR}/01_T.obj @ONLY)
  configure_file(data/02_GT.obj ${CMAKE_CURRENT_BINARY_DIR}/02_GT.obj @ONLY)
  configure_file(data/02_T.obj ${CMAKE_CURRENT_BINARY_DIR}/02_T.obj @ONLY)
  configure_file(data/03_GT.obj ${CMAKE_CURRENT_BINARY_DIR}/03_GT.obj @ONLY)
  configure_file(data/03_T.obj ${CMAKE_CURRENT_BINARY_DIR}/03_T.obj @ONLY)
  configure_file(data/04_GT.obj ${CMAKE_CURRENT_BINARY_DIR}/04_GT.obj @ONLY)
  configure_file(data/04_Ta.obj ${CMAKE_CURRENT_BINARY_DIR}/04_Ta.obj @ONLY)
  configure_file(data/04_Tb.obj ${CMAKE_CURRENT_BINARY_DIR}/04_Tb.obj @ONLY)