Salome HOME
Windows: suppress Cmake warnings
[modules/gui.git] / adm_local / cmake_files / UsePyQt.cmake
1 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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 # Author: Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
20
21 INCLUDE(UseSIP)
22
23 ####################################################################
24 #
25 # _PYQT_WRAP_GET_UNIQUE_TARGET_NAME: internal function
26
27 # Used to generate unique custom target name for usage in
28 # PYQT_WRAP_UIC macro.
29 #
30 # USAGE: _PYQT_WRAP_GET_UNIQUE_TARGET_NAME(prefix unique_name)
31 #
32 # ARGUMENTS:
33 #   prefix [in] prefix for the name
34 #   unique_name [out] unique name generated by function
35 #
36 ####################################################################
37 FUNCTION(_PYQT_WRAP_GET_UNIQUE_TARGET_NAME name unique_name)
38    SET(_propertyName "_PYQT_WRAP_UNIQUE_COUNTER_${name}")
39    GET_PROPERTY(_currentCounter GLOBAL PROPERTY "${_propertyName}")
40    IF(NOT _currentCounter)
41       SET(_currentCounter 1)
42    ENDIF()
43    SET(${unique_name} "${name}_${_currentCounter}" PARENT_SCOPE)
44    MATH(EXPR _currentCounter "${_currentCounter} + 1")
45    SET_PROPERTY(GLOBAL PROPERTY ${_propertyName} ${_currentCounter} )
46 ENDFUNCTION()
47
48 ####################################################################
49 #
50 # PYQT_WRAP_UIC macro
51 #
52 # Create Python modules by processing input *.ui (Qt designer) files with
53 # PyQt pyuic tool.
54 #
55 # USAGE: PYQT_WRAP_UIC(output_files pyuic_files)
56 #
57 # ARGUMENTS:
58 #   output_files [out] variable where output file names are listed to
59 #   pyuic_files  [in]  list of *.ui files
60
61 # NOTES:
62 #   - Input files are considered relative to the current source directory.
63 #   - Output files are generated in the current build directory.
64 #   - Macro automatically adds custom build target to generate output files
65
66 ####################################################################
67 MACRO(PYQT_WRAP_UIC outfiles)
68
69  IF(NOT WIN32)
70
71   FOREACH(_input ${ARGN})
72     GET_FILENAME_COMPONENT(_input_name ${_input} NAME)
73     STRING(REPLACE ".ui" "_ui.py" _input_name ${_input_name})
74     SET(_output ${CMAKE_CURRENT_BINARY_DIR}/${_input_name})
75     ADD_CUSTOM_COMMAND(
76       OUTPUT ${_output}
77       COMMAND ${PYQT_PYUIC_PATH} -o ${_output} ${CMAKE_CURRENT_SOURCE_DIR}/${_input}
78       MAIN_DEPENDENCY ${_input}
79       )
80     SET(${outfiles} ${${outfiles}} ${_output})
81   ENDFOREACH()
82   _PYQT_WRAP_GET_UNIQUE_TARGET_NAME(BUILD_UI_PY_FILES _uniqueTargetName)
83   ADD_CUSTOM_TARGET(${_uniqueTargetName} ALL DEPENDS ${${outfiles}})
84
85  ELSE(NOT WIN32)
86
87 ####
88 # ANA: Workaround for the Microsoft Visual Studio 2010. Seems there is a bug in 
89 # the Microsoft Visual Studio 2010 or CMake 2.8.10.2: custom target doesn't work 
90 # for the list of the dependencies. It works only for the first dependency in the 
91 # list. So generate separate target for the each input file. This problem will be 
92 #investigated in the future.
93 ####
94
95   SET_PROPERTY(GLOBAL PROPERTY USE_FOLDERS ON)
96   _PYQT_WRAP_GET_UNIQUE_TARGET_NAME(BUILD_UI_PY_FILES _uniqueTargetName)
97   ADD_CUSTOM_TARGET(${_uniqueTargetName} ALL)
98   SET_TARGET_PROPERTIES(${_uniqueTargetName} PROPERTIES FOLDER PYQT_WRAP_UIC_TARGETS)
99   FOREACH(_input ${ARGN})
100     GET_FILENAME_COMPONENT(_input_name ${_input} NAME)
101     STRING(REPLACE ".ui" "_ui.py" _input_name ${_input_name})
102     SET(_output ${CMAKE_CURRENT_BINARY_DIR}/${_input_name})
103     _PYQT_WRAP_GET_UNIQUE_TARGET_NAME(BUILD_UI_PY_FILES _TgName)
104     ADD_CUSTOM_TARGET(${_TgName} ${PYQT_PYUIC_PATH} -o ${_output} ${CMAKE_CURRENT_SOURCE_DIR}/${_input}
105       DEPENDS ${_input}
106       )
107     SET_TARGET_PROPERTIES(${_TgName} PROPERTIES FOLDER PYQT_WRAP_UIC_TARGETS)
108     ADD_DEPENDENCIES(${_uniqueTargetName} ${_TgName})
109     SET(${outfiles} ${${outfiles}} ${_output})
110   ENDFOREACH()
111  ENDIF(NOT WIN32)
112 ENDMACRO(PYQT_WRAP_UIC)
113
114 ####################################################################
115 #
116 # PYQT_WRAP_SIP macro
117 #
118 # Generate C++ wrappings for *.sip files by processing them with sip.
119 #
120 # USAGE: PYQT_WRAP_SIP(output_files sip_file [sip_file...] [OPTIONS options] [SOURCES sources])
121 #
122 # NOTES: See SIP_WRAP_SIP macro from UseSIP.cmake for the usage description.
123
124 ####################################################################
125 MACRO(PYQT_WRAP_SIP outfiles)
126   SIP_WRAP_SIP(${outfiles} ${ARGN} OPTIONS ${PYQT_SIPFLAGS})
127 ENDMACRO(PYQT_WRAP_SIP)
128
129 ####################################################################
130 #
131 # PYQT_WRAP_QRC macro
132 #
133 # Generate Python wrappings for *.qrc files by processing them with pyrcc5.
134 #
135 # USAGE: PYQT_WRAP_QRC(output_files qrc_files)
136 #
137 # ARGUMENTS:
138 #   output_files [out] variable where output file names are listed to
139 #   qrc_files  [in]  list of *.qrc files
140
141 # NOTES:
142 #   - Input files are considered relative to the current source directory.
143 #   - Output files are generated in the current build directory.
144 #   - Macro automatically adds custom build target to generate output files
145
146 ####################################################################
147
148 MACRO(PYQT_WRAP_QRC outfiles)
149   FOREACH(_input ${ARGN})
150     GET_FILENAME_COMPONENT(_input_name ${_input} NAME)
151     STRING(REPLACE ".qrc" "_qrc.py" _input_name ${_input_name})
152     SET(_output ${CMAKE_CURRENT_BINARY_DIR}/${_input_name})
153     ADD_CUSTOM_COMMAND(
154       OUTPUT ${_output}
155       COMMAND ${PYQT_PYRCC_PATH} -o ${_output} ${CMAKE_CURRENT_SOURCE_DIR}/${_input}
156       MAIN_DEPENDENCY ${_input}
157       )
158     SET(${outfiles} ${${outfiles}} ${_output})
159   ENDFOREACH()
160   _PYQT_WRAP_GET_UNIQUE_TARGET_NAME(BUILD_QRC_PY_FILES _uniqueTargetName)
161   ADD_CUSTOM_TARGET(${_uniqueTargetName} ALL DEPENDS ${${outfiles}})
162 ENDMACRO(PYQT_WRAP_QRC)