From da7eb850e45e197b7f0cac14f2c0662a05d423d5 Mon Sep 17 00:00:00 2001 From: Nathan Osman Date: Sat, 8 Jul 2017 13:00:42 -0700 Subject: [PATCH] Fix typos. --- CMakeLists.txt | 2 +- src/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2536535..a525e7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.2.0) -project(qmdnsengine) +project(qhttpengine) set(PROJECT_NAME "QHttpEngine") set(PROJECT_DESCRIPTION "Simple and secure HTTP server for Qt applications") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f954674..f967783 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -68,7 +68,7 @@ install(TARGETS qhttpengine EXPORT qhttpengine-export install(EXPORT qhttpengine-export FILE qhttpengineConfig.cmake - DESTINATION "${LIB_INSTALL_DIR}/cmake/qmdnsengine" + DESTINATION "${LIB_INSTALL_DIR}/cmake/qhttpengine" ) include(CMakePackageConfigHelpers) @@ -79,7 +79,7 @@ write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/qhttpengineConfigV ) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/qhttpengineConfigVersion.cmake" - DESTINATION "${LIB_INSTALL_DIR}/cmake/qmdnsengine" + DESTINATION "${LIB_INSTALL_DIR}/cmake/qhttpengine" ) configure_file(qhttpengine.pc.in "${CMAKE_CURRENT_BINARY_DIR}/qhttpengine.pc" @ONLY)