Skip to content

Commit

Permalink
fix(ci): fix small problem with generation of installer
Browse files Browse the repository at this point in the history
Fixed small problem with generation of installer for RacingWorld. The problem was caused by the wrong name of the game server.
  • Loading branch information
VladimirBalun committed Mar 3, 2019
1 parent 24054be commit 579eb00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ClientSide/CPack.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@

cmake_minimum_required (VERSION 3.10)

include(InstallRequiredSystemLibraries)

install (TARGETS ${PROJECT_NAME} RUNTIME DESTINATION Bin)
install (FILES ../ServerSide/game/target/GameServer.jar DESTINATION Bin)
install (FILES ../ServerSide/gameserver/target/GameServer.jar DESTINATION Bin)
install (DIRECTORY ./Resources DESTINATION ./)

set (CPACK_GENERATOR NSIS)
Expand Down

0 comments on commit 579eb00

Please sign in to comment.