aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/mac_updater/CMakeLists.txt
blob: 5ae7dd84328474ac0ed9fe46595fa6796af579b3 (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
78
79
# -*- cmake -*-

project(mac_updater)

include(00-Common)
include(CURL)
include(LLCommon)
include(LLVFS)
include(Linking)

include_directories(
    ${LLCOMMON_INCLUDE_DIRS}
    ${LLVFS_INCLUDE_DIRS}
    )

set(mac_updater_SOURCE_FILES
    mac_updater.cpp
    FSCopyObject.c
    GenLinkedList.c
    MoreFilesX.c
    )

set(mac_updater_HEADER_FILES
    CMakeLists.txt

    FSCopyObject.h
    GenLinkedList.h
    MoreFilesX.h
    )

set_source_files_properties(
    FSCopyObject.c
    MoreFilesX.c
    PROPERTIES
    COMPILE_FLAGS -Wno-deprecated-declarations
    )

set_source_files_properties(${mac_updater_HEADER_FILES}
                            PROPERTIES HEADER_FILE_ONLY TRUE)

list(APPEND mac_updater_SOURCE_FILES ${mac_updater_HEADER_FILES})


set(mac_updater_RESOURCE_FILES
  AutoUpdater.nib/
  )
set_source_files_properties(
  ${mac_updater_RESOURCE_FILES}
  PROPERTIES
  HEADER_FILE_ONLY TRUE
  )
SOURCE_GROUP("Resources" FILES ${mac_updater_RESOURCE_FILES})
list(APPEND mac_updater_SOURCE_FILES ${mac_updater_RESOURCE_FILES})

add_executable(mac-updater
  MACOSX_BUNDLE
  ${mac_updater_SOURCE_FILES})

set_target_properties(mac-updater
  PROPERTIES
  MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist
  )

target_link_libraries(mac-updater
    ${LLVFS_LIBRARIES}
    ${CURL_LIBRARIES}
    ${LLCOMMON_LIBRARIES}
    )

add_custom_command(
  TARGET mac-updater POST_BUILD
  COMMAND ${CMAKE_COMMAND}
  ARGS
    -E
    copy_directory
    ${CMAKE_CURRENT_SOURCE_DIR}/AutoUpdater.nib
    ${CMAKE_CURRENT_BINARY_DIR}/${VIEWER_CFG_INTDIR}/mac-updater.app/Contents/Resources/AutoUpdater.nib
  )