Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • holau/Gaudi
  • dmagdali/Gaudi
  • pmunozpa/Gaudi
  • ssottoco/Gaudi
  • cvarni/Gaudi
  • mafila/Gaudi
  • admorris/Gaudi
  • staider/Gaudi
  • gunther/Gaudi
  • bstanisl/Gaudi
  • jtorasso/Gaudi
  • wochung/Gaudi
  • mveghel/Gaudi
  • averbyts/Gaudi
  • dguest/Gaudi
  • alboyer/Gaudi
  • dkonst/Gaudi
  • jcarcell/Gaudi
  • elmsheus/Gaudi
  • hpxgaudi/Gaudi
  • ganis/Gaudi
  • tadej/Gaudi
  • hahansen/Gaudi
  • juesseiv/Gaudi
  • imjelde/gaudida
  • jheuel/Gaudi
  • mimazure/Gaudi
  • masato/Gaudi
  • dcasperfaser/Gaudi
  • faser/offline/Gaudi
  • axu/Gaudi
  • sailer/Gaudi
  • amete/Gaudi
  • ponyisi/Gaudi
  • vavolkl/Gaudi
  • mstahl/Gaudi
  • wlampl/Gaudi
  • kreczko/Gaudi
  • emoyse/Gaudi
  • dhynds/Gaudi
  • sstahl/Gaudi
  • rcurrie/Gaudi
  • smh/Gaudi
  • valassi/Gaudi
  • bwynne/Gaudi_gaudi
  • abarton/Gaudi
  • tsulaia/gaudigaudi
  • mnowak/Gaudi
  • roiser/Gaudi
  • merrenst/Gaudi
  • mato/Gaudi
  • christos/Gaudi
  • goetz/Gaudi
  • goetz/AtlasGaudi
  • tsulaia/atlasgaudi
  • olupton/Gaudi
  • pseyfert/Gaudi
  • graemes/Gaudi
  • akraszna/AtlasGaudi
  • cattanem/Gaudi
  • skluth/Gaudi
  • will/Gaudi
  • ssnyder/Gaudi
  • agonzale/Gaudi
  • leggett/AtlasGaudi
  • apearce/Gaudi
  • mnowak/Gaudi-ORIG
  • fwinkl/AtlasGaudi
  • bwynne/Gaudi_atlas
  • chamont/Gaudi
  • rmatev/Gaudi
  • lhcb/Gaudi
  • atlas/Gaudi
  • akraszna/GaudiGaudi
  • fwinkl/Gaudi
  • jonrob/Gaudi
  • azaborow/Gaudi
  • clemenci/Gaudi
  • hgraslan/Gaudi
  • srimanob/Gaudi
  • graven/Gaudi
  • hegner/Gaudi
  • gaudi/Gaudi
83 results
Show changes
Commits on Source (2)
......@@ -419,7 +419,7 @@ int main( int argc, char** argv )
if ( EXIT_SUCCESS == sc && !vm.count( "no-init" ) ) {
// create an empty __init__.py file in the output dir
std::fstream initPy( ( out / fs::path( "__init__.py" ) ).string(), std::ios_base::out | std::ios_base::trunc );
initPy << "## Hook for " << pkgName << " genConf module\n" << flush;
initPy << "__path__ = __import__('pkgutil').extend_path(__path__, __name__)\n" << flush;
}
{
......
......@@ -748,49 +748,17 @@ main()")
set(project_build_environment ${project_build_environment} ${_pack_env})
# we need special handling of PYTHONPATH and PATH for the build-time environment
set(_has_config NO)
set(_has_python NO)
if(EXISTS ${CMAKE_BINARY_DIR}/${package}/genConf OR TARGET ${_pack}ConfUserDB)
if(EXISTS ${CMAKE_SOURCE_DIR}/${package}/python)
set(project_build_environment ${project_build_environment}
PREPEND PYTHONPATH ${CMAKE_BINARY_DIR}/${package}/genConf)
set(_has_config YES)
PREPEND PYTHONPATH \${${_proj}_PROJECT_ROOT}/${package}/python)
endif()
if(EXISTS ${CMAKE_SOURCE_DIR}/${package}/python)
# It is important that genConf comes first in PYTHONPATH (i.e. is prepended
# second), so that its special generated __init__.py is found, which then
# allows for the user module in ${package}/python to be found.
if(EXISTS ${CMAKE_BINARY_DIR}/${package}/genConf OR TARGET ${_pack}ConfUserDB)
set(project_build_environment ${project_build_environment}
PREPEND PYTHONPATH \${${_proj}_PROJECT_ROOT}/${package}/python)
set(_has_python YES)
endif()
if(_has_config AND _has_python)
# we need to add a special fake __init__.py that allow import of modules
# from different copies of the package
get_filename_component(packname ${package} NAME)
# find python packages in the python directory of the subdir
file(GLOB_RECURSE pypacks
RELATIVE ${CMAKE_SOURCE_DIR}/${package}/python
${CMAKE_SOURCE_DIR}/${package}/python/*/__init__.py)
# sanitize the list (we only need the directory name)
string(REPLACE "//" "/" pypacks "${pypacks}")
string(REPLACE "/__init__.py" "" pypacks "${pypacks}")
#message(STATUS "pypacks -> ${pypacks}")
# add the top package if it was not found
set(pypacks ${packname} ${pypacks})
list(REMOVE_DUPLICATES pypacks)
# create all the __init__.py files
foreach(pypack ${pypacks})
#message(STATUS "creating local ${pypack}/__init__.py")
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/python/${pypack})
file(WRITE ${CMAKE_BINARY_DIR}/python/${pypack}/__init__.py "
import os, sys
__path__ = [d for d in [os.path.join(d, '${pypack}') for d in sys.path if d]
if (d.startswith('${CMAKE_BINARY_DIR}') or
d.startswith('${CMAKE_SOURCE_DIR}')) and
(os.path.exists(d) or 'python.zip' in d)]
if os.path.exists('${CMAKE_SOURCE_DIR}/${package}/python/${pypack}/__init__.py'):
execfile('${CMAKE_SOURCE_DIR}/${package}/python/${pypack}/__init__.py')
")
endforeach()
PREPEND PYTHONPATH ${CMAKE_BINARY_DIR}/${package}/genConf)
endif()
if(EXISTS ${CMAKE_SOURCE_DIR}/${package}/scripts)
......@@ -811,8 +779,7 @@ if os.path.exists('${CMAKE_SOURCE_DIR}/${package}/python/${pypack}/__init__.py')
PREPEND PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
PREPEND LD_LIBRARY_PATH ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}
PREPEND ROOT_INCLUDE_PATH ${CMAKE_BINARY_DIR}/include
PREPEND PYTHONPATH ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}
PREPEND PYTHONPATH ${CMAKE_BINARY_DIR}/python)
PREPEND PYTHONPATH ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
if(GAUDI_ATLAS)
set(project_build_environment ${project_build_environment}
PREPEND JOBOPTSEARCHPATH ${CMAKE_BINARY_DIR}/jobOptions
......@@ -3166,7 +3133,7 @@ function(gaudi_generate_env_conf filename)
set(data "${data} <env:search_path>${val}</env:search_path>\n")
endforeach()
foreach(other_project ${used_gaudi_projects})
set(data "${data} <env:include>${other_project}.xenv</env:include>\n")
set(data "${data} <env:include>${other_project}-build.xenv</env:include>\n")
endforeach()
foreach(datapkg ${used_data_packages})
get_filename_component(_xenv_file "${${datapkg}_XENV}" NAME)
......