blob: 6cb14de0c09af273c255fc1978ee6b5ba5c218d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# This file is included from the top-level CMakeLists.txt. We just store it
# here to avoid cluttering up that file.
#
# Windows installer (Inno Setup)
#
if(WIN32)
if(CMAKE_SIZEOF_VOID_P MATCHES 8)
set(INST_SUFFIX 64)
set(INST_DEFS -DWIN64)
endif()
configure_file(tigervnc.iss.in tigervnc.iss)
add_custom_target(installer
iscc -o. ${INST_DEFS} -F${CMAKE_PROJECT_NAME}${INST_SUFFIX}-${VERSION} tigervnc.iss
DEPENDS vncviewer
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/tigervnc.iss)
if(BUILD_WINVNC)
configure_file(winvnc.iss.in winvnc.iss)
add_custom_target(winvnc_installer
iscc -o. ${INST_DEFS} -F${CMAKE_PROJECT_NAME}${INST_SUFFIX}-winvnc-${VERSION} winvnc.iss
DEPENDS winvnc4 wm_hooks vncconfig
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/winvnc.iss)
endif()
endif() # WIN32
#
# Mac DMG
#
if(APPLE)
configure_file(makemacapp.in makemacapp)
configure_file(Info.plist.in Info.plist)
add_custom_target(dmg sh makemacapp
DEPENDS vncviewer
SOURCES makemacapp)
endif() # APPLE
#
# Binary tarball
#
if(UNIX)
configure_file(maketarball.in maketarball)
set(TARBALL_DEPENDS vncviewer vncpasswd vncconfig)
if(BUILD_JAVA)
set(TARBALL_DEPENDS ${TARBALL_DEPENDS} java)
endif()
add_custom_target(tarball bash maketarball
DEPENDS ${TARBALL_DEPENDS})
add_custom_target(servertarball bash maketarball server
DEPENDS ${TARBALL_DEPENDS})
endif() #UNIX
#
# Common
#
install(FILES ${CMAKE_SOURCE_DIR}/LICENCE.TXT DESTINATION ${CMAKE_INSTALL_FULL_DOCDIR})
install(FILES ${CMAKE_SOURCE_DIR}/README.rst DESTINATION ${CMAKE_INSTALL_FULL_DOCDIR})
|