Skip to content

Commit

Permalink
fix(installer): explicitly install vpkedit binary
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jun 6, 2024
1 parent 97f1f18 commit 49d1304
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/installer/_installer.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Set up install rules
install(TARGETS ${PROJECT_NAME}
DESTINATION .)

if(VPKEDIT_BUILD_CLI)
install(TARGETS ${PROJECT_NAME}cli
RUNTIME DESTINATION .
LIBRARY DESTINATION .)
DESTINATION .)
endif()

install(FILES
Expand All @@ -17,8 +19,7 @@ if(WIN32)
RUNTIME DESTINATION .
LIBRARY DESTINATION .)

install(FILES
"${QT_BASEDIR}/bin/opengl32sw.dll"
install(FILES "${QT_BASEDIR}/bin/opengl32sw.dll"
DESTINATION .)

install(FILES
Expand Down

0 comments on commit 49d1304

Please sign in to comment.