Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ cmake_minimum_required(VERSION 3.5)

project(cmcpp LANGUAGES CXX)

option(BUILD_SAMPLES "Build samples" ON)
# Determine default for BUILD_SAMPLES: OFF on Windows, ON elsewhere
set(_BUILD_SAMPLES_DEFAULT ON)
if (WIN32)
set(_BUILD_SAMPLES_DEFAULT OFF)
endif()
option(BUILD_SAMPLES "Build samples" ${_BUILD_SAMPLES_DEFAULT})
option(BUILD_TESTING "Build tests" ON)

add_library(cmcpp INTERFACE)
Expand Down
2 changes: 1 addition & 1 deletion vcpkg
Submodule vcpkg updated 8361 files
2 changes: 1 addition & 1 deletion vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"default-registry": {
"kind": "git",
"baseline": "fba75d09065fcc76a25dcf386b1d00d33f5175af",
"baseline": "120deac3062162151622ca4860575a33844ba10b",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
Expand Down
Loading