File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 3535 -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
3636 -DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
3737 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
38- -DBUILD_TESTS =ON
38+ -DSPARROW_IPC_BUILD_TESTS =ON
3939 cmake --build build/ --parallel
4040 - name : Run tests
4141 run : |
6565 -DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
6666 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
6767 -DFETCH_DEPENDENCIES_WITH_CMAKE=MISSING \
68- -DBUILD_TESTS =ON
68+ -DSPARROW_IPC_BUILD_TESTS =ON
6969 cmake --build build/ --parallel
7070 - name : Run tests
7171 run : |
Original file line number Diff line number Diff line change 3535 -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
3636 -DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
3737 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
38- -DBUILD_TESTS =ON
38+ -DSPARROW_IPC_BUILD_TESTS =ON
3939 cmake --build build/ --parallel
4040 - name : Run tests
4141 run : |
6565 -DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
6666 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
6767 -DFETCH_DEPENDENCIES_WITH_CMAKE=MISSING \
68- -DBUILD_TESTS =ON
68+ -DSPARROW_IPC_BUILD_TESTS =ON
6969 cmake --build build/ --parallel
7070 - name : Run tests
7171 run : |
Original file line number Diff line number Diff line change 3838 -DCMAKE_PREFIX_PATH=%CONDA_PREFIX% ^
3939 -DCMAKE_CXX_STANDARD=20 ^
4040 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} ^
41- -DBUILD_TESTS =ON
41+ -DSPARROW_IPC_BUILD_TESTS =ON
4242 if %errorlevel% neq 0 exit /b %errorlevel%
4343 cmake --build build/ --parallel
4444 if %errorlevel% neq 0 exit /b %errorlevel%
7575 -DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} ^
7676 -DFETCH_DEPENDENCIES_WITH_CMAKE=MISSING ^
7777 -DCMAKE_VERBOSE_MAKEFILE=ON ^^
78- -DBUILD_TESTS =ON
78+ -DSPARROW_IPC_BUILD_TESTS =ON
7979 if %errorlevel% neq 0 exit /b %errorlevel%
8080 cmake --build build/ --parallel
8181 if %errorlevel% neq 0 exit /b %errorlevel%
Original file line number Diff line number Diff line change 4141 list (APPEND SPARROW_IPC_COMPILE_DEFINITIONS SPARROW_IPC_STATIC_LIB)
4242endif ()
4343
44- OPTION (BUILD_TESTS "Build sparrow-ipc test suite" OFF )
45- MESSAGE (STATUS "🔧 Build tests: ${BUILD_TESTS } " )
44+ OPTION (SPARROW_IPC_BUILD_TESTS "Build sparrow-ipc test suite" OFF )
45+ MESSAGE (STATUS "🔧 Build tests: ${SPARROW_IPC_BUILD_TESTS } " )
4646
4747set (SPARROW_IPC_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR} /include )
4848set (SPARROW_IPC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} /src)
@@ -147,7 +147,7 @@ endif()
147147
148148add_dependencies (sparrow-ipc generate_flatbuffers_headers)
149149
150- if (BUILD_TESTS )
150+ if (SPARROW_IPC_BUILD_TESTS )
151151 message (STATUS "🧪 Create tests targets" )
152152 enable_testing ()
153153 add_subdirectory (tests)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ if(FETCH_DEPENDENCIES_WITH_CMAKE STREQUAL "ON" OR FETCH_DEPENDENCIES_WITH_CMAKE
3535 endif ()
3636endif ()
3737
38- if (BUILD_TESTS )
38+ if (SPARROW_IPC_BUILD_TESTS )
3939 if (NOT FETCH_DEPENDENCIES_WITH_CMAKE STREQUAL "ON" )
4040 find_package (doctest CONFIG ${FIND_PACKAGE_OPTIONS} )
4141 endif ()
You can’t perform that action at this time.
0 commit comments