File tree Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 4545
4646 - name : Configure to build mamba
4747 run : >
48- cmake -S. -Bbuild -DBUILD_LIBMAMBA=ON -DBUILD_MAMBA=ON -DBUILD_SHARED=ON -DBUILD_STATIC=OFF
48+ cmake -S. -Bbuild -DBUILD_LIBMAMBA=ON -DBUILD_LIBMAMBA_SPDLOG=ON - DBUILD_MAMBA=ON -DBUILD_SHARED=ON -DBUILD_STATIC=OFF
4949 -DLibArchive_ROOT=$(brew --prefix libarchive)
5050
5151 - name : Build mamba
Original file line number Diff line number Diff line change 5454 -D CMAKE_CXX_COMPILER_LAUNCHER=sccache \
5555 -D CMAKE_C_COMPILER_LAUNCHER=sccache \
5656 -D MAMBA_WARNING_AS_ERROR=ON \
57+ -D BUILD_LIBMAMBA_SPDLOG=ON \
5758 -D BUILD_LIBMAMBAPY=ON \
5859 -D BUILD_MICROMAMBA=ON \
5960 -D ENABLE_MAMBA_ROOT_PREFIX_FALLBACK=OFF \
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ jobs:
185185 -D CMAKE_BUILD_TYPE="Release" ^
186186 -D BUILD_LIBMAMBA=ON ^
187187 -D BUILD_STATIC=ON ^
188+ -D BUILD_LIBMAMBA_SPDLOG=ON ^
188189 -D BUILD_MICROMAMBA=ON
189190 if %errorlevel% neq 0 exit /b %errorlevel%
190191 cmake --build build/ --parallel
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ if(BUILD_LIBMAMBA)
7878endif ()
7979
8080# libmamba-spdlog library and tests
81- if (BUILD_LIBMAMBA_SPDLOG)
81+ if (BUILD_LIBMAMBA_SPDLOG OR BUILD_LIBMAMBAPY OR BUILD_MICROMAMBA OR BUILD_MAMBA )
8282 add_subdirectory (libmamba-spdlog)
8383endif ()
8484
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ find_package(Catch2 REQUIRED)
55add_executable ( test_libmamba_logging_spdlog test_logging_spdlog.cpp )
66
77target_link_libraries (test_libmamba_logging_spdlog
8- PRIVATE
8+ PUBLIC
99 mamba::libmamba
1010 mamba::libmamba-spdlog
1111 mamba::libtesting_mamba_logging_common
You can’t perform that action at this time.
0 commit comments