2025-10-26 22:26:14 +00:00
|
|
|
# dmbcs-micro-server A C++ library providing CGI or built-in
|
|
|
|
|
# web server functions
|
|
|
|
|
#
|
|
|
|
|
# Copyright (C) 2025 DM Bespoke Computer Solutions
|
|
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or (at
|
|
|
|
|
# your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prefix=@CMAKE_INSTALL_PREFIX@
|
2020-03-23 15:33:18 +00:00
|
|
|
exec_prefix=${prefix}
|
|
|
|
|
libdir=${exec_prefix}/lib
|
|
|
|
|
includedir=${prefix}/include
|
|
|
|
|
|
|
|
|
|
Name: dmbcs-micro-server
|
2025-10-26 22:26:14 +00:00
|
|
|
Description: C++ web micro-server provisioning library
|
|
|
|
|
Version: @dmbcs-micro-server_VERSION_MAJOR@.@dmbcs-micro-server_VERSION_MINOR@
|
|
|
|
|
Requires: curlpp
|
|
|
|
|
Libs: ${libdir}/libdmbcs-micro-server.so
|
2020-03-23 15:33:18 +00:00
|
|
|
Cflags: -I${includedir}
|