/usr/share/mapserver/cmake/mapserver-config.cmake is in libmapserver-dev 7.0.0-9ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # - Config file for the mapserver package
# It defines the following variables
# MAPSERVER_INCLUDE_DIRS - include directories for mapserver
# MAPSERVER_LIBRARIES - libraries to link against
# MAPSERVER_EXECUTABLES - executables build for mapserver
# Compute paths
get_filename_component(MAPSERVER_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(MAPSERVER_INCLUDE_DIRS "${MAPSERVER_CMAKE_DIR}/../../../include;/usr/include/freetype2;/usr/include/x86_64-linux-gnu/freetype2;/usr/include/fribidi;/usr/include/harfbuzz;/usr/include/cairo;/usr/include/postgresql;/usr/include/gdal;/usr/include/librsvg-2.0;/usr/include/gdk-pixbuf-2.0;/usr/include/libpng12;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include;/usr/include/pixman-1;/usr/include/libxml2;/usr/include/mapserver")
# Our library dependencies (contains definitions for IMPORTED targets)
if(NOT TARGET mapserver AND NOT MapServer_BINARY_DIR)
include("${MAPSERVER_CMAKE_DIR}/mapserverTargets.cmake")
endif()
# These are IMPORTED targets created by mapserverTargets.cmake
set(MAPSERVER_LIBRARIES mapserver)
set(MAPSERVER_EXECUTABLES sortshp shptree shptreevis msencrypt legend scalebar tile4ms shptreetst shp2img mapserv)
|