1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# This is the cmake config file for the Telescope Control plugin
# Further: Use program version number. (Static plugin, why bother?)
SET(TELESCOPE_CONTROL_VERSION "${VERSION}")
#SET(TELESCOPE_SERVERS_SOURCE_DIR "$ENV{STELROOT}/../telescope_server/src"
# CACHE PATH "Should point to the /src/ directory where the stellarium telescope servers source tree is located")
ADD_DEFINITIONS(-DTELESCOPE_CONTROL_PLUGIN_VERSION="${TELESCOPE_CONTROL_VERSION}")
ADD_DEFINITIONS(-DTELESCOPE_CONTROL_PLUGIN_LICENSE="GNU GPLv2 or later")
# WARNING: Update also the version number in resources/device_models.json,
# otherwise the local copy will be overwritten each time Stellarium is started.
ADD_DEFINITIONS(-DTELESCOPE_CONTROL_CONFIG_VERSION="0.4.1")
#Temporary debugging definitions for the telescope servers code
ADD_DEFINITIONS(-DDEBUG3 -DDEBUG4 -DDEBUG5)
ADD_SUBDIRECTORY( src )
|