lowercase civetweb library in domain-server so it isn't so loud

This commit is contained in:
Stephen Birarda 2013-09-17 09:16:10 -07:00
parent 8f3de6fb5d
commit 291d34d49f

View file

@ -10,9 +10,9 @@ setup_hifi_project(${TARGET_NAME} TRUE)
# setup a library for civetweb and link it to the domain-server
FILE(GLOB CIVETWEB_SRCS external/civetweb/src/*.c)
add_library(CIVETWEB ${CIVETWEB_SRCS})
add_library(civetweb ${CIVETWEB_SRCS})
include_directories(external/civetweb/include)
target_link_libraries(${TARGET_NAME} CIVETWEB)
target_link_libraries(${TARGET_NAME} civetweb)
# remove and then copy the files for the webserver
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD