mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:32:00 +08:00
75a2b65447
* Add ignition-modularscript port Modeled after the qt5-modularscript port, this port just contain ignition_modular_library, an helper CMake function to simplify the process of writing port of C++ libraries developed by the Ignition Robotics project ( https://ignitionrobotics.org ). * Add ignition-cmake0 port * Add ignition-math4 port
15 lines
411 B
Diff
15 lines
411 B
Diff
diff --git a/cmake/IgnConfigureBuild.cmake b/cmake/IgnConfigureBuild.cmake
|
|
--- a/cmake/IgnConfigureBuild.cmake
|
|
+++ b/cmake/IgnConfigureBuild.cmake
|
|
@@ -109,7 +109,9 @@
|
|
# Add all the source code directories
|
|
add_subdirectory(src)
|
|
add_subdirectory(include)
|
|
- add_subdirectory(test)
|
|
+ if(BUILD_TESTING)
|
|
+ add_subdirectory(test)
|
|
+ endif()
|
|
|
|
|
|
#--------------------------------------
|