Skip to content

Commit fa30576

Browse files
committed
Remove reference to zstd in packer cmake
1 parent 1ee60c3 commit fa30576

3 files changed

Lines changed: 2 additions & 13 deletions

File tree

.github/workflows/Test_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Build executables
5252
run: |
5353
cd ${{github.workspace}}\build
54-
cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}}
54+
cmake --build ${{github.workspace}}\build --target SWEngine-unpacker_${{env.VERSION_NAME}} --config ${{env.BUILD_TYPE}}
5555
5656
- name: Archive Library
5757
uses: actions/upload-artifact@v3
@@ -73,7 +73,7 @@ jobs:
7373
- name: Build executables
7474
run: |
7575
cd ${{github.workspace}}\build
76-
cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}}
76+
cmake --build ${{github.workspace}}\build --target SWEngine-unpacker_${{env.VERSION_NAME}} --config ${{env.BUILD_TYPE}}
7777
7878
- name: Archive library
7979
uses: actions/upload-artifact@v3

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ list(LENGTH STATIC_LIB_NAME list_len)
4747
math(EXPR LIST_LEN "${list_len} - 1")
4848

4949
if (${LIST_LEN} GREATER_EQUAL 0)
50-
5150
foreach(ctr RANGE ${LIST_LEN})
5251
list(GET STATIC_LIB_NAME ${ctr} lib)
5352
list(GET STATIC_LIB ${ctr} filelib)

cmake/Packer.cmake

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,6 @@ if(MSVC)
5959
endif()
6060
## <=====================================>
6161

62-
## IMPORTED STATIC LIBRARY NAME
63-
set( STATIC_LIB_NAME
64-
zstd_static
65-
)
66-
67-
## IMPORTED STATIC LIBRARY .lib file
68-
set( STATIC_LIB
69-
${CMAKE_SOURCE_DIR}/libraries/zstd_static.lib
70-
)
71-
7262
## STATIC LIBRARY LINKING
7363
## <=====================================>
7464
if (${STATIC_LIB_NAME})

0 commit comments

Comments
 (0)