############################################################################### # Only execute commands if file was not included already ############################################################################### if (NOT MEDIEVAL_CONFIG_CMAKE_LOADED) ############################################################################### # Add local module path to CMAKE_MODULE_PATH ############################################################################### set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") ############################################################################### # include user-defined configuration ############################################################################### include (${MEDIEVAL_TOWN_CSM_SOURCE_DIR}/user.cmake) ############################################################################### # find inVRs itself: ############################################################################### set (inVRs_MODULES Interaction;Navigation;Network) find_package ( inVRs REQUIRED ${inVRs_REQUIRED_MODULES}) include_directories ( ${inVRs_INCLUDE_DIRS} ) link_directories ( ${inVRs_LIBRARY_DIRS} ) add_definitions ( ${inVRs_DEFINITIONS} ) ############################################################################### # Finish ############################################################################### set (MEDIEVAL_CONFIG_CMAKE_LOADED ON) endif (NOT MEDIEVAL_CONFIG_CMAKE_LOADED)