geom/src/BooleanGUI/CMakeLists.txt

94 lines
2.3 KiB
CMake
Raw Normal View History

2019-02-14 13:09:13 +03:00
# Copyright (C) 2012-2019 CEA/DEN, EDF R&D, OPEN CASCADE
2013-09-10 12:47:38 +00:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
2014-02-18 10:44:41 +04:00
# version 2.1 of the License, or (at your option) any later version.
2013-09-10 12:47:38 +00:00
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
#
2015-11-20 21:31:07 +03:00
INCLUDE(UseQtExt)
2013-09-10 12:47:38 +00:00
# --- options ---
# additional include directories
INCLUDE_DIRECTORIES(
2013-09-17 12:52:41 +00:00
${PTHREAD_INCLUDE_DIR}
2013-09-10 12:47:38 +00:00
${OMNIORB_INCLUDE_DIR}
${OpenCASCADE_INCLUDE_DIR}
2013-09-10 12:47:38 +00:00
${KERNEL_INCLUDE_DIRS}
${GUI_INCLUDE_DIRS}
${PROJECT_BINARY_DIR}/idl
${PROJECT_BINARY_DIR}
${PROJECT_SOURCE_DIR}/src/OBJECT
${PROJECT_SOURCE_DIR}/src/GEOMClient
${PROJECT_SOURCE_DIR}/src/GEOMImpl
${PROJECT_SOURCE_DIR}/src/GEOMGUI
${PROJECT_SOURCE_DIR}/src/GEOMBase
${PROJECT_SOURCE_DIR}/src/DlgRef
${PROJECT_BINARY_DIR}/src/DlgRef
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
# additional preprocessor / compiler flags
ADD_DEFINITIONS(
${OpenCASCADE_DEFINITIONS}
2013-09-10 12:47:38 +00:00
${OMNIORB_DEFINITIONS}
${QT_DEFINITIONS}
)
# libraries to link to
SET(_link_LIBRARIES
GEOMBase
)
# --- resources ---
# resource files / to be processed by uic
SET(_uic_files
)
# --- headers ---
SET(BooleanGUI_HEADERS
BooleanGUI.h
BooleanGUI_Dialog.h
)
# header files / to be processed by moc
SET(_moc_HEADERS
BooleanGUI_Dialog.h
)
# header files / uic wrappings
2015-11-20 21:31:07 +03:00
QT_WRAP_UIC(_uic_HEADERS ${_uic_files})
2013-09-10 12:47:38 +00:00
# --- sources ---
# sources / moc wrappings
2015-11-20 21:31:07 +03:00
QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
2013-09-10 12:47:38 +00:00
SET(BooleanGUI_SOURCES
BooleanGUI.cxx
BooleanGUI_Dialog.cxx
${_moc_SOURCES}
${_uic_files}
)
# --- rules ---
ADD_LIBRARY(BooleanGUI ${BooleanGUI_SOURCES})
TARGET_LINK_LIBRARIES(BooleanGUI ${_link_LIBRARIES})
INSTALL(TARGETS BooleanGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})