File: CMakeLists.txt

package info (click to toggle)
stellarium 24.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 911,396 kB
  • sloc: ansic: 317,377; cpp: 204,602; xml: 48,590; javascript: 26,348; python: 1,254; perl: 1,108; sh: 207; makefile: 190; pascal: 169
file content (15 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This is the cmake config file for the RemoteSync plugin
SET(REMOTESYNC_MAJOR 0)
SET(REMOTESYNC_MINOR 0)
SET(REMOTESYNC_PATCH 5)
SET(REMOTESYNC_VERSION "${REMOTESYNC_MAJOR}.${REMOTESYNC_MINOR}.${REMOTESYNC_PATCH}")
ADD_DEFINITIONS(
-DREMOTESYNC_MAJOR=${REMOTESYNC_MAJOR}
-DREMOTESYNC_MINOR=${REMOTESYNC_MINOR}
-DREMOTESYNC_PATCH=${REMOTESYNC_PATCH}
-DREMOTESYNC_PLUGIN_VERSION="${REMOTESYNC_VERSION}"
)

ADD_DEFINITIONS(-DREMOTESYNC_PLUGIN_LICENSE="GNU GPLv2 or later")

ADD_SUBDIRECTORY( src )