File: CMakeLists.txt

package info (click to toggle)
regina-normal 5.1-6
  • links: PTS
  • area: main
  • in suites: buster
  • size: 54,488 kB
  • sloc: cpp: 142,029; ansic: 19,218; xml: 9,844; objc: 7,729; perl: 1,190; python: 623; sh: 614; makefile: 34
file content (36 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (3)
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
# hypersurface

# Files to compile
SET ( FILES
  enumerate
  links
  hsvectorstandard
  normalhypersurface
  normalhypersurfaces
  xmlhypersurfacereader
  triangulate
  )

# Prepend folder name
FOREACH ( SOURCE_FILE ${FILES} )
  SET ( SOURCES ${SOURCES} hypersurface/${SOURCE_FILE})
ENDFOREACH(SOURCE_FILE)

# Set the variable in the parent directory
SET( SOURCES ${SOURCES} PARENT_SCOPE)

if (${REGINA_INSTALL_DEV})
  INSTALL(FILES
    hscoordregistry.h
    hscoordregistry-impl.h
    hsvectorstandard.h
    hypercoords.h
    hyperflags.h
    nhsstandard.h
    nnormalhypersurface.h
    nnormalhypersurfacelist.h
    normalhypersurface.h
    normalhypersurfaces.h
    xmlhypersurfacereader.h
    DESTINATION ${INCLUDEDIR}/hypersurface COMPONENT Development)
endif (${REGINA_INSTALL_DEV})