spawns FastCGI processes
https://redmine.lighttpd.net/projects/spawn-fcgi
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.
14 lines
539 B
14 lines
539 B
CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0 FATAL_ERROR) |
|
|
|
cmake_policy(VERSION 2.6.0) |
|
|
|
PROJECT(spawn-fcgi) |
|
SET(PACKAGE_NAME ${CMAKE_PROJECT_NAME}) |
|
SET(PACKAGE_VERSION 1.6.0) |
|
EXEC_PROGRAM(date ARGS "'+%b %d %Y %H:%M:%S UTC'" OUTPUT_VARIABLE PACKAGE_BUILD_DATE) |
|
|
|
IF("${CMAKE_BUILD_TYPE}" STREQUAL "") |
|
SET(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel." FORCE) |
|
ENDIF("${CMAKE_BUILD_TYPE}" STREQUAL "") |
|
|
|
ADD_SUBDIRECTORY(src)
|
|
|