You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Test windows hosted agent
* Update CMakeLists.txt
* Update CMakeLists.txt
* generate c++ wrappers
* added generate_c_wrapper
* supress 4505
* fix 4505 warning
* vsprintf_wchar_with_empty_string_succeeds test
* fixed warnings and x64 build
* fix unix build
* fix guid tests
* fix win32 unit test
* putback compile_c_test_artifacts_as directive
* added back compile_c_test_artifacts_as
* fixed uniqueid_ut_test_file
* default use_cppunittest to off
x64 build will enable it to test both c and cpp unit tests
* fix cmake warnings
* move to cmake v3.5
* update to use our 1es agents
* pr feedback
* remove guid comment
* fixed EOF
Copy file name to clipboardExpand all lines: CMakeLists.txt
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
#Copyright (c) Microsoft. All rights reserved.
2
2
#Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
3
4
-
cmake_minimum_required(VERSION2.8.11)
4
+
cmake_minimum_required(VERSION3.5)
5
5
6
6
if (TARGET aziotsharedutil)
7
7
RETURN()
@@ -26,7 +26,7 @@ option(use_default_uuid "set use_default_uuid to ON to use the out of the box UU
26
26
option(run_e2e_tests "set run_e2e_tests to ON to run e2e tests (default is OFF). Chsare dutility does not have any e2e tests, but the option needs to exist to evaluate in IF statements"OFF)
27
27
option(run_int_tests "set run_int_tests to ON to integration tests (default is OFF)."OFF)
28
28
option(use_builtin_httpapi "set use_builtin_httpapi to ON to use the built-in httpapi_compact that comes with C shared utility (default is OFF)"OFF)
29
-
option(use_cppunittest "set use_cppunittest to ON to build CppUnitTest tests on Windows (default is ON)"ON)
29
+
option(use_cppunittest "set use_cppunittest to ON to build CppUnitTest tests on Windows (default is OFF)"OFF)
30
30
option(suppress_header_searches "do not try to find headers - used when compiler check will fail"OFF)
31
31
option(use_custom_heap "use externally defined heap functions instead of the malloc family"OFF)
0 commit comments