debug fastcgi streams while forwarding them
https://redmine.lighttpd.net/projects/fcgi-debug
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
874 B
20 lines
874 B
PROJECT(fcgi-debug C) |
|
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0 FATAL_ERROR) |
|
|
|
SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) |
|
|
|
SET(CPACK_PACKAGE_VERSION_MAJOR 2) |
|
SET(CPACK_PACKAGE_VERSION_MINOR 0) |
|
SET(CPACK_PACKAGE_VERSION_PATCH 0) |
|
|
|
#SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING") |
|
#SET(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/README") |
|
SET(CPACK_PACKAGE_VENDOR "lighttpd@stbuehler.de") |
|
|
|
SET(CPACK_SOURCE_GENERATOR "TGZ") |
|
SET(CPACK_SOURCE_IGNORE_FILES "/\\\\.;~$;/_;build/;CMakeFiles/;CMakeCache;gz$;Makefile\\\\.;trace;Testing/;foo;autom4te;cmake_install;CPack;\\\\.pem;ltmain.sh;configure;libtool;/config\\\\.;missing;autogen.sh;install-sh;Dart;aclocal;log$;Makefile$") |
|
|
|
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") |
|
|
|
ADD_SUBDIRECTORY(src build)
|
|
|