vcpkg/ports/proxywrapper/fix-macos-build.patch
Yuval Gross e9267ac7c4 [proxywrapper] Add new port (#8916)
* adding proxywrapper package

* resolving review comments

* restrict Linux only

* [proxywrapper] Only static library

* [libmodman] Move building of tests to a non-default feature

* [libproxy] Move tests to a non-default feature

* [libproxy] Add features for language bindings

* [proxywrapper] Require C++ 11 standard
2019-12-03 11:18:49 -08:00

16 lines
300 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3ba85fa..f18fd1e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,9 @@
cmake_minimum_required(VERSION 3.8)
-project(proxywrapper)
+project(proxywrapper C CXX)
+
+set(CMAKE_CXX_STANDARD 11)
include(GNUInstallDirs)