From: adam Date: Tue, 15 Feb 2011 11:51:12 +0000 (+0000) Subject: cmake compatibility X-Git-Tag: V6_3_0a1~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d704ed14eb9e7d75fc18ec3d01828b817f95a903;p=modules%2Fjobmanager.git cmake compatibility --- diff --git a/build_cmake b/build_cmake new file mode 100755 index 0000000..f6697ab --- /dev/null +++ b/build_cmake @@ -0,0 +1,27 @@ +#!/bin/sh +# Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE +# +# 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 +# version 2.1 of the License. +# +# 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 +# + +CURRENT_DIR=`pwd` +CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"` +cd ${CONF_DIR} +python $KERNEL_ROOT_DIR/salome_adm/cmake_files/am2cmake.py --jobmanager +status=$? +cd ${CURRENT_DIR} +exit $status diff --git a/build_cmake.bat b/build_cmake.bat new file mode 100644 index 0000000..2494e2a --- /dev/null +++ b/build_cmake.bat @@ -0,0 +1,20 @@ +@REM Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE +@REM +@REM This library is free software; you can redistribute it and/or +@REM modify it under the terms of the GNU Lesser General Public +@REM License as published by the Free Software Foundation; either +@REM version 2.1 of the License. +@REM +@REM This library is distributed in the hope that it will be useful, +@REM but WITHOUT ANY WARRANTY; without even the implied warranty of +@REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +@REM Lesser General Public License for more details. +@REM +@REM You should have received a copy of the GNU Lesser General Public +@REM License along with this library; if not, write to the Free Software +@REM Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +@REM +@REM See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +@REM + +%PYTHONBIN% %KERNEL_ROOT_DIR%\salome_adm\cmake_files\am2cmake.py --jobmanager diff --git a/idl/Makefile.am b/idl/Makefile.am index bcf95c7..80952b6 100644 --- a/idl/Makefile.am +++ b/idl/Makefile.am @@ -14,8 +14,14 @@ nodist_salomeinclude_HEADERS = JOBMANAGER_IDL.hh libJOBMANAGER_IDL_la_CXXFLAGS = -I. @KERNEL_CXXFLAGS@ @OMNIORB_CXXFLAGS@ @OMNIORB_INCLUDES@ libJOBMANAGER_IDL_la_LIBADD = $(KERNEL_LIBS) +OMNIORB_IDLCXXFLAGS = @OMNIORB_IDLCXXFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome + %SK.cc %.hh : %.idl - $(OMNIORB_IDL) -bcxx @OMNIORB_IDLCXXFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome $< + $(OMNIORB_IDL) -bcxx @OMNIORB_IDLCXXFLAGS@ $< + +# E.A. : IDLPYFLAGS is just to compile with cmake (parsed in am2cmake). + +IDLPYFLAGS = @IDLPYFLAGS@ -I$(KERNEL_ROOT_DIR)/idl/salome CLEANFILES = *.hh *SK.cc *.py *.hxx *.cxx diff --git a/src/genericgui/Makefile.am b/src/genericgui/Makefile.am index 3efd185..9b25404 100644 --- a/src/genericgui/Makefile.am +++ b/src/genericgui/Makefile.am @@ -33,13 +33,15 @@ libBL_GenericGui_la_SOURCES = BL_GenericGui.hxx BL_GenericGui.cxx \ JM_SalomeResource.hxx JM_SalomeResource.cxx \ JM_EditSalomeResource.hxx JM_EditSalomeResource.cxx -nodist_libBL_GenericGui_la_SOURCES = BL_GenericGui_moc.cxx BL_JobsTable_moc.cxx \ +MOC_FILES = BL_GenericGui_moc.cxx BL_JobsTable_moc.cxx \ BL_JobTab_moc.cxx \ BL_Buttons_moc.cxx BL_JobsManager_QT_moc.cxx \ BL_QModelManager_moc.cxx BL_CreateJobWizard_moc.cxx \ BL_Summary_moc.cxx JM_ResourceCatalog_moc.cxx \ JM_SalomeResource_moc.cxx JM_EditSalomeResource_moc.cxx +nodist_libBL_GenericGui_la_SOURCES = $(MOC_FILES) + libBL_GenericGui_la_CXXFLAGS = $(qt4_cppflags) \ -I$(top_srcdir)/src/bases \ -I$(top_srcdir)/src/engine \