Salome HOME
replace document (2)
[tools/medcoupling.git] / src / MEDOP / gui / dialogs / CMakeLists.txt
1 # Copyright (C) 2012-2015  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 ADD_DEFINITIONS(${CAS_DEFINITIONS} ${BOOST_DEFINITIONS} ${OMNIORB_DEFINITIONS})
21
22 INCLUDE(UseQt4Ext)
23
24 SET(MEDOPGUI_dialogs_FORMS
25   GenericDialog.ui
26   DlgAlias.ui
27   DlgUseInWorkspace.ui
28   DlgChangeUnderlyingMesh.ui
29   DlgInterpolateField.ui
30   DlgImageToMed.ui
31 )
32 QT4_WRAP_UI(MEDOPGUI_dialogs_FORMS_HEADERS ${MEDOPGUI_dialogs_FORMS})
33
34 SET(MEDOPGUI_dialogs_FILES
35   GenericDialog.hxx
36   DlgAlias.hxx
37   DlgUseInWorkspace.hxx
38   DlgChangeUnderlyingMesh.hxx
39   DlgInterpolateField.hxx
40   DlgImageToMed.hxx
41 )
42 QT4_WRAP_CPP(MEDOPGUI_dialogs_HEADERS_MOC ${MEDOPGUI_dialogs_FILES})
43
44 INCLUDE_DIRECTORIES(
45   ${OMNIORB_INCLUDE_DIR} ${OMNIORB_INCLUDE_DIRS}
46   ${CAS_INCLUDE_DIRS}
47   ${Boost_INCLUDE_DIRS}
48   ${PTHREAD_INCLUDE_DIR}
49   ${CMAKE_CURRENT_BINARY_DIR}
50   ${GUI_INCLUDE_DIRS}
51   ${CMAKE_CURRENT_SOURCE_DIR}/..
52   ${QT4_INCLUDE_DIRECTORY}
53 )
54
55 SET(MEDOPGUI_dialogs_SOURCES
56   GenericDialog.cxx
57   DlgAlias.cxx
58   DlgUseInWorkspace.cxx
59   DlgChangeUnderlyingMesh.cxx
60   DlgInterpolateField.cxx
61   DlgImageToMed.cxx
62 )
63
64 ADD_LIBRARY(MEDOPGUI_dialogs SHARED ${MEDOPGUI_dialogs_SOURCES} ${MEDOPGUI_dialogs_HEADERS_MOC} ${MEDOPGUI_dialogs_FORMS_HEADERS})
65 TARGET_LINK_LIBRARIES(MEDOPGUI_dialogs ${CAS_KERNEL} ${QT_LIBRARIES} ${KERNEL_SalomeIDLKernel}
66     ${GUI_SalomeGuiHelpers} ${OMNIORB_LIBRARIES} ${GUI_qtx} ${GUI_suit} ${PLATFORM_LIBRARIES}
67     ${KERNEL_SalomeLifeCycleCORBA} ${KERNEL_SalomeKernelHelpers} ${GUI_SalomeGuiHelpers})
68 INSTALL(TARGETS MEDOPGUI_dialogs DESTINATION ${SALOME_INSTALL_LIBS})
69
70 #
71 # ---------------------------------------------------------
72 # Unit test programs
73 # ---------------------------------------------------------
74 #
75 ADD_EXECUTABLE(dlgTester dlgTester.cxx)
76 TARGET_LINK_LIBRARIES(dlgTester MEDOPGUI_dialogs ${QT_LIBS} ${PLATFORM_LIBS})
77 INSTALL(TARGETS dlgTester DESTINATION ${SALOME_INSTALL_BINS})
78 #ADD_TEST(dlgTester dlgTester)
79
80 FILE(GLOB COMMON_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
81 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${SALOME_INSTALL_HEADERS})