############################################################################### # Check if built within inVRs folder structure (tools-folder) or separately ############################################################################### if ( NOT INVRS_SOURCE_DIR ) ####################################################################### # Set minimum cmake version ####################################################################### cmake_minimum_required (VERSION 2.4) ####################################################################### # Set project name ####################################################################### project (INVRS_TOOL_TRACKDDEVICE) ####################################################################### # Include config.cmake ####################################################################### include (${CMAKE_CURRENT_SOURCE_DIR}/cmake/config_buildExternal.cmake) ####################################################################### # Set target include and library directories ####################################################################### set (INVRS_TARGET_INCLUDE_DIR ${inVRs_INCLUDE_DIR}) set (INVRS_TARGET_LIB_DIR ${inVRs_LIBRARY_DIR}) endif ( NOT INVRS_SOURCE_DIR ) ############################################################################### # Include config file which loads dependencies (trackd) ############################################################################### include (${CMAKE_CURRENT_SOURCE_DIR}/cmake/config.cmake) ############################################################################## # Define sourcefiles ############################################################################## aux_source_directory(. TRACKDDEVICE_SRCS) set(ALL_SRCS ${TRACKDDEVICE_SRCS}) #include (${INVRS_SOURCE_DIR}/cmake/findTrackD.cmake) #include_directories (${TRACKD_INCLUDE_DIRS}) ############################################################################## # Define target-directories for header and library files ############################################################################## set (TARGET_INCLUDE_DIR ${INVRS_TARGET_INCLUDE_DIR}/inVRs/tools/libraries/TrackdDevice) set (TARGET_LIB_DIR ${INVRS_TARGET_LIB_DIR}) ############################################################################## # Set definition for exporting DLL information ############################################################################## add_definitions (-DINVRSTRACKDDEVICE_EXPORTS) ############################################################################## # Build library ############################################################################## add_library(inVRsTrackdDevice SHARED ${ALL_SRCS}) ############################################################################## # Define dependencies when built within inVRs ############################################################################## if (INVRS_SOURCE_DIR) add_dependencies (inVRsTrackdDevice inVRsSystemCore irrXML) endif (INVRS_SOURCE_DIR) ############################################################################## # Define libraries which must be linked against ############################################################################## target_link_libraries (inVRsTrackdDevice inVRsSystemCore irrXML ${trackd_LIBRARIES}) if (WIN32) target_link_libraries(inVRsTrackdDevice debug OSGBaseD.lib debug OSGSystemD.lib debug OSGWindowGLUTD.lib optimized OSGBase.lib optimized OSGSystem.lib optimized OSGWindowGLUT.lib) endif (WIN32) ############################################################################## # Add library to required libraries (when using this package) ############################################################################## list (APPEND TrackdDevice_LIBRARIES inVRsTrackdDevice) ############################################################################## # Install library and header files ############################################################################## install (FILES TrackdDevice.h DESTINATION ${TARGET_INCLUDE_DIR}) install (TARGETS inVRsTrackdDevice DESTINATION ${TARGET_LIB_DIR}) ############################################################################## # Export all variables needed later for building ############################################################################## set ( INVRS_EXPORT_TrackdDevice_INCLUDE_DIRS ${TrackdDevice_INCLUDE_DIRS}) set ( INVRS_EXPORT_TrackdDevice_LIBRARY_DIRS ${TrackdDevice_LIBRARY_DIRS}) set ( INVRS_EXPORT_TrackdDevice_LIBRARIES ${TrackdDevice_LIBRARIES}) set ( INVRS_EXPORT_TrackdDevice_DEFINITIONS ${TrackdDevice_DEFINITIONS}) INVRS_ADD_EXPORTS( TrackdDevice )