We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426d361 commit da3f711Copy full SHA for da3f711
CMakeLists.txt
@@ -196,6 +196,10 @@ option(NBL_EMBED_BUILTIN_RESOURCES "Embed built-in resources?" ON)
196
option(NBL_WITH_DOCKER "Detects and installs docker if not present in the system" OFF)
197
198
if (NBL_WITH_DOCKER)
199
+ if (NOT CMAKE_HOST_WIN32)
200
+ message(FATAL_ERROR "NBL_WITH_DOCKER works only with Windows machines. Please disable this option")
201
+ endif()
202
+
203
find_program(DOCKER_EXECUTABLE docker)
204
205
if (DOCKER_EXECUTABLE)
0 commit comments