Salome HOME
Work on cmake.
[tools/ydefx.git] / src / gui / CMakeLists.txt
1 # Copyright (C) 2019  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 SET(CMAKE_AUTOMOC ON)
21
22 INCLUDE_DIRECTORIES(
23   ${PROJECT_SOURCE_DIR}/src/cpp
24   ${PYTHON_INCLUDE_DIR}
25 )
26
27 ADD_DEFINITIONS(
28   ${PYTHON_DEFINITIONS}
29 )
30
31 SET(YDEFXGUI_SOURCES
32   ResourceWidget.cxx
33   ParamsConfig.cxx
34   PathsConfig.cxx
35   QuickConfig.cxx
36 )
37
38 SET(YDEFXGUI_HEADERS
39   ResourceWidget.hxx
40 )
41
42 SET(YDEFXGUI_link_LIBRARIES
43   Qt5::Widgets
44   ydefx
45 )
46
47 ADD_LIBRARY(ydefxgui ${YDEFXGUI_SOURCES})
48 TARGET_LINK_LIBRARIES(ydefxgui ${YDEFXGUI_link_LIBRARIES})
49 TARGET_INCLUDE_DIRECTORIES(ydefxgui PUBLIC
50                           $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/gui>
51                           $<INSTALL_INTERFACE:${SALOME_INSTALL_HEADERS}>)
52
53 ADD_EXECUTABLE(ydefxgui.exe ydefxgui.cxx)
54 TARGET_LINK_LIBRARIES(ydefxgui.exe ydefxgui)
55
56 INSTALL(TARGETS ydefxgui DESTINATION ${SALOME_INSTALL_LIBS})
57 INSTALL(TARGETS ydefxgui EXPORT ydefxCfg_cmake LIBRARY DESTINATION ${SALOME_INSTALL_LIBS})
58 INSTALL(FILES ${YDEFXGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}/ydefx)