mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
e9267ac7c4
* 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
16 lines
300 B
Diff
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)
|
|
|