We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c4436e commit b3d38c7Copy full SHA for b3d38c7
1 file changed
CMakeLists.txt
@@ -1,4 +1,4 @@
1
-cmake_minimum_required(VERSION 3.16)
+cmake_minimum_required(VERSION 3.16)
2
# Early options
3
option(DEPTHAI_ENABLE_LIBUSB "Enable usage of libusb and interaction with USB devices" ON)
4
# Build AprilTag node code (note, that even if set to OFF, an AprilTagNode can be used with setRunOnHost(false))
@@ -14,6 +14,10 @@ set(DEPTHAI_HAS_APRIL_TAG ${DEPTHAI_ENABLE_APRIL_TAG})
14
if(WIN32)
15
message(STATUS "AprilTag node is not supported on Windows")
16
set(DEPTHAI_HAS_APRIL_TAG OFF)
17
+
18
+ # Statically compile vcruntime library
19
+ add_compile_options(/MT)
20
21
endif()
22
if(DEPTHAI_HAS_APRIL_TAG)
23
list(APPEND VCPKG_MANIFEST_FEATURES "apriltag")
0 commit comments