Skip to content

Commit

Permalink
cmake: disable systemtests on Windows
Browse files Browse the repository at this point in the history
the systemtests don't work on Windows (yet) and cmake will fail trying
to configure them. So for now we just disable them.
  • Loading branch information
arogge committed Mar 31, 2021
1 parent a78cda3 commit bbb74d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -67,7 +67,7 @@ endif()
if(BUILD_BAREOS_BINARIES)
add_subdirectory(core)
add_subdirectory(webui)
if (NOT client-only)
if (NOT client-only AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Windows")
add_subdirectory(systemtests)
endif()
endif()
Expand Down

0 comments on commit bbb74d7

Please sign in to comment.