Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
f2219bea
Commit
f2219bea
authored
Mar 29, 2010
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nsis: forget to remove some files from the uninstaller.
parent
ed51bd51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
nsis/CMakeLists.txt
nsis/CMakeLists.txt
+0
-6
nsis/installer.nsi
nsis/installer.nsi
+10
-2
No files found.
nsis/CMakeLists.txt
View file @
f2219bea
...
...
@@ -17,12 +17,6 @@ IF(WIN32)
DESTINATION
${
NSIS_OUTPUT_DIR
}
FILES_MATCHING PATTERN
"*.dll"
)
# Copy some important files
CONFIGURE_FILE
(
"
${
CMAKE_SOURCE_DIR
}
/COPYING"
${
NSIS_OUTPUT_DIR
}
COPYONLY
)
CONFIGURE_FILE
(
"
${
CMAKE_SOURCE_DIR
}
/AUTHORS"
${
NSIS_OUTPUT_DIR
}
COPYONLY
)
CONFIGURE_FILE
(
"
${
CMAKE_SOURCE_DIR
}
/TRANSLATORS"
${
NSIS_OUTPUT_DIR
}
COPYONLY
)
CONFIGURE_FILE
(
"
${
CMAKE_SOURCE_DIR
}
/NEWS"
${
NSIS_OUTPUT_DIR
}
COPYONLY
)
MESSAGE
(
STATUS
"Configuring NSIS"
)
# Copy and configure the nsis script file
...
...
nsis/installer.nsi
View file @
f2219bea
...
...
@@ -29,7 +29,7 @@ RequestExecutionLevel admin
!define MUI_ABORTWARNING
LicenseText "License"
LicenseData "COPYING"
LicenseData "
@CMAKE_SOURCE_DIR@/
COPYING"
;--------------------------------
; Pages
...
...
@@ -65,6 +65,10 @@ Section "@PROJECT_NAME_SHORT@ (required)"
File "QtXml4.dll"
File "vlmc.exe"
File "@CMAKE_SOURCE_DIR@/share/vlmc.ico"
File "@CMAKE_SOURCE_DIR@/COPYING"
File "@CMAKE_SOURCE_DIR@/AUTHORS"
File "@CMAKE_SOURCE_DIR@/TRANSLATORS"
File "@CMAKE_SOURCE_DIR@/NEWS"
File /r "plugins"
File /r "effects"
...
...
@@ -105,16 +109,20 @@ Section "Uninstall"
Delete "$INSTDIR\libvlc.dll"
Delete "$INSTDIR\libvlccore.dll"
Delete "$INSTDIR\mingwm10.dll"
Delete "$INSTDIR\libgcc_s_dw2-1.dll"
Delete "$INSTDIR\QtCore4.dll"
Delete "$INSTDIR\QtGui4.dll"
Delete "$INSTDIR\QtSvg4.dll"
Delete "$INSTDIR\QtXml4.dll"
Delete "$INSTDIR/COPYING"
Delete "$INSTDIR/AUTHORS"
Delete "$INSTDIR/TRANSLATORS"
Delete "$INSTDIR/NEWS"
Delete "$INSTDIR\plugins\*.*"
Delete "$INSTDIR\effects\*.*"
RMDir "$INSTDIR\plugins"
RMDir "$INSTDIR\effects"
; Remove shortcuts, if any
Delete "$SMPROGRAMS\@PROJECT_NAME_LONG@\*.*"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment