From: Jeff Trawick Date: Wed, 4 Sep 2013 22:15:24 +0000 (+0000) Subject: Set LONG_NAME and BIN_NAME to something reasonable for httpd.rc, X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=263d6693e9accafea4b78d423835e88f6900e57e;p=thirdparty%2Fapache%2Fhttpd.git Set LONG_NAME and BIN_NAME to something reasonable for httpd.rc, which otherwise sets the properties to "LONG_NAME" and "BIN_NAME". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520153 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a2337f12da..3524c6bdb39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -569,6 +569,7 @@ ADD_DEPENDENCIES(libhttpd test_char_header) ########### HTTPD EXECUTABLES ########## ADD_EXECUTABLE(httpd server/main.c build/win32/httpd.rc) SET(install_targets ${install_targets} httpd) +SET_TARGET_PROPERTIES(httpd PROPERTIES COMPILE_FLAGS "-DLONG_NAME=\"\\\"Apache HTTP Server\\\"\" -DBIN_NAME=httpd.exe") TARGET_LINK_LIBRARIES(httpd libhttpd) ADD_EXECUTABLE(ab support/ab.c)