Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Apr 28, 2024
1 parent 8474cfc commit 74cc88f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ jobs:
if: matrix.config.mode == 'Release'
run: |
mkdir dist
mv client dist
mv profile dist
mv web dist
mv .\build\osr-extract.exe dist
mv .\build\osr-backend.exe dist
cd dist
Expand Down Expand Up @@ -294,8 +293,7 @@ jobs:
if: matrix.config.artifact
run: |
mkdir osr
mv client osr/client
mv profile osr/profile
mv web osr/web
mv build/osr-extract osr/osr-extract
mv build/osr-backend osr/osr-backend
tar cjf osr-${{ matrix.config.artifact }}.tar.bz2 osr
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if (MSVC)
string(REPLACE "/Zi" "${OSR_MSVC_DEBUG_FLAGS}" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
string(REPLACE "/Zi" "${OSR_MSVC_DEBUG_FLAGS}" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
string(REPLACE "/Zi" "${OSR_MSVC_DEBUG_FLAGS}" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
add_definitions(_CRT_SECURE_NO_WARNINGS=1)
endif ()

if (NOT DEFINED CMAKE_MSVC_RUNTIME_LIBRARY)
Expand Down

0 comments on commit 74cc88f

Please sign in to comment.