projects
/
synfig.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Using mutexes around accesses to refcounts seems to make the Windows build much less...
[synfig.git]
/
synfig-core
/
trunk
/
src
/
tool
/
tool.nsh
1
; The stuff to install
2
Section "Synfig Tool"
3
4
; SectionIn RO
5
6
; Set output path to the installation directory.
7
SetOutPath "$INSTDIR\bin"
8
9
; Put file there
10
File "src\tool\.libs\synfig.exe"
11
12
SectionEnd
13
14
Section "un.Synfig Tool Uninstall"
15
Delete "$INSTDIR\bin\synfig.exe"
16
RMDir "$INSTDIR\bin"
17
RMDir "$INSTDIR"
18
SectionEnd
19
20