From 291d34d49fb127afe4d91bdf6e9c9d646ca18455 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 17 Sep 2013 09:16:10 -0700 Subject: [PATCH] lowercase civetweb library in domain-server so it isn't so loud --- domain-server/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domain-server/CMakeLists.txt b/domain-server/CMakeLists.txt index 1026f6c0b3..e2b7f33f60 100644 --- a/domain-server/CMakeLists.txt +++ b/domain-server/CMakeLists.txt @@ -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