vcpkg/ports/mstch/do-not-force-release.patch
Curoky 400957f829
[mstch] Add new port (#11020)
* [mstch] add new port

* [mstch] update sha512 code

* [mstch] don't build in some window environment

* [mstch] remove some args which were no longer needed

* [mstch] Patch out forcing build type

* [mstch] Restore C++11 on non-Windows

* [ci.baseline.txt] Mark mstch as passing on x64-windows-static

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-04-30 17:47:22 -07:00

26 lines
746 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8d8e0c7..4304ad7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,17 +5,17 @@ option(WITH_UNIT_TESTS "enable building unit test executable" OFF)
option(WITH_BENCHMARK "enable building benchmark executable" OFF)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
-set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
-set(CMAKE_BUILD_TYPE Release)
set(mstch_VERSION 1.0.1)
if(NOT MSVC)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -O3")
+ set(CMAKE_CXX_STANDARD 11)
endif()
add_subdirectory(src)
+target_include_directories(mstch PUBLIC $<INSTALL_INTERFACE:include>)
+
if(WITH_UNIT_TESTS)
enable_testing()
add_subdirectory(vendor/headerize)