File tree Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 116116 "lhs" : " ${hostSystemName}" ,
117117 "rhs" : " Linux"
118118 }
119+ },
120+ {
121+ "name" : " windows-x64" ,
122+ "configurePreset" : " windows-x64" ,
123+ "output" : {
124+ "outputOnFailure" : true
125+ },
126+ "condition" : {
127+ "type" : " equals" ,
128+ "lhs" : " ${hostSystemName}" ,
129+ "rhs" : " Windows"
130+ }
119131 }
120132 ]
121133}
Original file line number Diff line number Diff line change @@ -34,10 +34,6 @@ function(add_test_executable test_name source_file)
3434 add_test (NAME ${test_name} COMMAND ${test_name} )
3535endfunction ()
3636
37- if (LINUX OR APPLE )
38- # Add the directory for the C++ tests.
39- add_subdirectory (cpp)
37+ # Add the directory for the C++ tests.
38+ add_subdirectory (cpp)
4039
41- # Add the new directory for io tests.
42- add_subdirectory (io/ymq)
43- endif ()
Original file line number Diff line number Diff line change 11# this fetches Google Test, so it must be included first.
2- add_subdirectory (object_storage)
3- add_subdirectory (ymq)
2+ if (LINUX OR APPLE )
3+ add_subdirectory (object_storage)
4+ endif ()
5+
6+ if (LINUX OR APPLE OR WIN32 )
7+ add_subdirectory (ymq)
8+ endif ()
You can’t perform that action at this time.
0 commit comments