-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCMakeLists.txt
83 lines (79 loc) · 3.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cmake_minimum_required(VERSION 3.6)
project(starcharter)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -Wall -fopenmp -std=c99 -I${CMAKE_SOURCE_DIR}/src -D SRCDIR='\"${CMAKE_SOURCE_DIR}/src\"' -D DCFVERSION='\"7.0\"' -D DEBUG=1 -D MEMDEBUG1=0 -D MEMDEBUG2=0")
set(SOURCE_FILES
src/astroGraphics/constellations.c
src/astroGraphics/constellations.h
src/astroGraphics/deepSky.c
src/astroGraphics/deepSky.h
src/astroGraphics/deepSkyOutlines.c
src/astroGraphics/deepSkyOutlines.h
src/astroGraphics/ephemeris.c
src/astroGraphics/ephemeris.h
src/astroGraphics/galaxyMap.c
src/astroGraphics/galaxyMap.h
src/astroGraphics/greatCircles.c
src/astroGraphics/greatCircles.h
src/astroGraphics/gridLines.c
src/astroGraphics/gridLines.h
src/astroGraphics/horizon.c
src/astroGraphics/horizon.h
src/astroGraphics/meteorShower.c
src/astroGraphics/meteorShower.h
src/astroGraphics/solarSystem.c
src/astroGraphics/solarSystem.h
src/astroGraphics/starListReader.c
src/astroGraphics/starListReader.h
src/astroGraphics/scaleBars.c
src/astroGraphics/scaleBars.h
src/astroGraphics/stars.c
src/astroGraphics/stars.h
src/astroGraphics/textAnnotations.c
src/astroGraphics/textAnnotations.h
src/astroGraphics/zenith.c
src/astroGraphics/zenith.h
src/coreUtils/asciiDouble.c
src/coreUtils/asciiDouble.h
src/coreUtils/errorReport.c
src/coreUtils/errorReport.h
src/coreUtils/makeRasters.c
src/coreUtils/makeRasters.h
src/coreUtils/strConstants.h
src/ephemCalc/alias.h
src/ephemCalc/constellations.c
src/ephemCalc/constellations.h
src/ephemCalc/jpl.c
src/ephemCalc/jpl.h
src/ephemCalc/magnitudeEstimate.c
src/ephemCalc/magnitudeEstimate.h
src/ephemCalc/orbitalElements.c
src/ephemCalc/orbitalElements.h
src/listTools/ltDict.c
src/listTools/ltDict.h
src/listTools/ltList.c
src/listTools/ltList.h
src/listTools/ltMemory.c
src/listTools/ltMemory.h
src/listTools/ltStringProc.c
src/listTools/ltStringProc.h
src/mathsTools/julianDate.c
src/mathsTools/julianDate.h
src/mathsTools/projection.c
src/mathsTools/projection.h
src/mathsTools/sphericalTrig.c
src/mathsTools/sphericalTrig.h
src/settings/chart_config.c
src/settings/chart_config.h
src/settings/read_config.c
src/settings/read_config.h
src/settings/render_chart.c
src/settings/render_chart.h
src/vectorGraphics/arrowDraw.c
src/vectorGraphics/arrowDraw.h
src/vectorGraphics/lineDraw.c
src/vectorGraphics/lineDraw.h
src/vectorGraphics/cairo_page.c
src/vectorGraphics/cairo_page.h
src/main.c)
add_executable(starcharter ${SOURCE_FILES})
target_link_libraries(starcharter gsl gslcblas z cairo m)