File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 2121 with :
2222 cmake-version : ' 3.21.3'
2323
24- - name : Install MSVC build tools
25- uses : microsoft/setup-msbuild@v1.0.2
26-
2724 - name : Configure with CMake
2825 run : cmake -S . -B build -G "Visual Studio 17 2022"
2926
3027 - name : Build with MSVC
3128 run : cmake --build build --config Release
32-
33- - name : Check build directory
34- run : dir build /s
Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ if(NOT zlib_POPULATED)
4141 FetchContent_Populate (zlib)
4242endif ()
4343
44+ file (GLOB ZLIB_LIBS "${zlib_BINARY_DIR} /*.lib" )
45+ foreach (lib_file ${ZLIB_LIBS} )
46+ message (STATUS "Found zlib lib file: ${lib_file} " )
47+ endforeach ()
48+
4449set (ZLIB_LIBRARY "${zlib_BINARY_DIR} /zlib.lib" )
4550set (ZLIB_INCLUDE_DIR "${zlib_SOURCE_DIR} " )
4651
You can’t perform that action at this time.
0 commit comments