Rename project from csoap to webcc

This commit is contained in:
Adam Gu
2018-04-04 13:23:19 +08:00
parent 964be5fdb0
commit 47e94bffd2
56 changed files with 296 additions and 297 deletions
+7 -6
View File
@@ -1,14 +1,15 @@
cmake_minimum_required(VERSION 3.0)
project(csoap)
project(webcc)
option(CSOAP_ENABLE_SOAP "Enable SOAP support (need PugiXml)?" ON)
option(CSOAP_ENABLE_UT "Enable unit test?" OFF)
option(WEBCC_ENABLE_SOAP "Enable SOAP support (need PugiXml)?" ON)
option(WEBCC_ENABLE_UT "Enable unit test?" ON)
option(WEBCC_ENABLE_DEMO "Enable demo programs?" ON)
if(CSOAP_ENABLE_SOAP)
add_definitions(-DCSOAP_ENABLE_SOAP)
if(WEBCC_ENABLE_SOAP)
add_definitions(-DWEBCC_ENABLE_SOAP)
endif()
if(CSOAP_ENABLE_UT)
if(WEBCC_ENABLE_UT)
enable_testing()
endif()