Przeglądaj źródła

Fixing string and variable reference

Jacob Repp 7 lat temu
rodzic
commit
8cdd3c2859
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      CMakeLists.txt
  2. 1 1
      src/CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -55,7 +55,7 @@ set_property(CACHE CIVETWEB_THREAD_STACK_SIZE PROPERTY VALUE ${CIVETWEB_THREAD_S
 message(STATUS "Thread Stack Size - ${CIVETWEB_THREAD_STACK_SIZE}")
 
 option(CIVETWEB_ENABLE_SERVER_EXECUTABLE "Enable building of the server executable" ON)
-message(STATUS "Disable server - ${CIVETWEB_ENABLE_SERVER_EXECUTABLE}")
+message(STATUS "Enabling server executable - ${CIVETWEB_ENABLE_SERVER_EXECUTABLE}")
 
 # Serve no files from the web server
 option(CIVETWEB_SERVE_NO_FILES "Configures the server to serve no static files" OFF)

+ 1 - 1
src/CMakeLists.txt

@@ -240,7 +240,7 @@ if (CIVETWEB_ENABLE_LUA)
 endif()
 
 # The web server executable
-if (CIVETWEB_ENABLE_SERVER)
+if (CIVETWEB_ENABLE_SERVER_EXECUTABLE)
     add_executable(civetweb-c-executable main.c)
     set_target_properties(civetweb-c-executable PROPERTIES
         OUTPUT_NAME "civetweb"