summaryrefslogtreecommitdiffstats
path: root/Source/WXDialog/CMakeLists.txt
blob: 9ee8b91532257649f7f0f3284d33ebe4edd00060 (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
80
81
82
83
84
85
86
87
##---------------------------------------------------------------------------
## $RCSfile$
## $Source$
## $Revision$
## $Date$
##---------------------------------------------------------------------------
## Author:      Jorgen Bodde
## Copyright:   (c) Jorgen Bodde
## License:     wxWidgets License
##---------------------------------------------------------------------------

# wxWindows -> wxWidgets Jan Woetzel 07/2006
# tested with wx 2.6.3 with "multilib" build on Windows XP

# CMake Options
SET(CMAKE_VERBOSE_MAKEFILE TRUE)

# suppress wx header warnings? 
#SET(HAVE_ISYSTEM 1)

# in addition to wx std libs we need
SET( wxWidgets_USE_LIBS 
  std 
  html adv xml xrc )
FIND_PACKAGE(wxWidgets REQUIRED)
#INCLUDE(${CMAKE_ROOT}/Modules/FindwxWidgets.cmake)

# Start using wx stuff when it is fully found and set
IF(wxWidgets_FOUND)
  INCLUDE( ${wxWidgets_USE_FILE} )

  SET (CMAKE_SRCS 
    CMakeSetupFrame.cpp
    CMakeSetup.cpp
    CMakeSetupFrame.h
    CMakeSetup.h 
    PropertyList.cpp
    PropertyList.h
    app_resources.cpp
    app_resources.h
    progressdlg.cpp
    progressdlg.h 
    aboutdlg.cpp
    aboutdlg.h 
    optionsdlg.cpp
    optionsdlg.h 
    config.h 
    CommandLineInfo.cpp
    CommandLineInfo.h )
  
  # include .rc when windows    
  IF(WIN32)
    SET ( CMAKE_SRCS ${CMAKE_SRCS}  CMakeSetup.rc )
  ENDIF(WIN32)
  
  INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/Source/WXDialog
    ${wxWidgets_INCLUDE_DIR} )
  LINK_DIRECTORIES( ${wxWidgets_LINK_DIRECTORIES} 
    ${CMake_BINARY_DIR}/Source 
    ${CMake_BINARY_DIR}/Source/kwsys )
  
  IF(APPLE)
    ADD_EXECUTABLE(WXDialog MACOSX_BUNDLE  ${CMAKE_SRCS})
  ELSE(APPLE)
    ADD_EXECUTABLE(WXDialog WIN32  ${CMAKE_SRCS})
  ENDIF(APPLE)
  INSTALL_TARGETS(/bin WXDialog)
  
  # not required on MSVS beause bound to _DEBUG, 
  # but other compiler may need it.
  # However, the define prevents multiple build configurations 
  # in one build tree,
  # e.g. MSVS supports Debug;Release
  # TODO: shall we add the define or not - 
  # favor multi config or all compilers? (JW)
  SET(CMAKE_CXX_FLAGS_DEBUG 
    "${CMAKE_CXX_FLAGS_DEBUG} -D__WXDEBUG__ -DWXDEBUG=1")
  
  IF(LINUX)
    ADD_DEFINITIONS( -DLINUX=1 )
  ENDIF(LINUX)
  
  # if the checkbox view functionality is not desired,
  # exclude this part from the smple
  TARGET_LINK_LIBRARIES(WXDialog ${wxWidgets_LIBRARIES} cmsys CMakeLib)
  INSTALL_TARGETS(/bin WXDialog)
ENDIF(wxWidgets_FOUND)