Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10185 for code/trunk


Ignore:
Timestamp:
Jan 10, 2015, 2:22:06 PM (9 years ago)
Author:
landauf
Message:

fixed warnings with cmake 3.1

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/tools/TargetUtilities.cmake

    r9595 r10185  
    448448  # the target name (for example orxonox <-> liborxonox)
    449449
     450  CMAKE_POLICY(SET CMP0026 OLD) # we only use the file's name, not its actual location, so the old policy is fine
    450451  GET_TARGET_PROPERTY(_target_loc ${_target} LOCATION)
    451452  GET_FILENAME_COMPONENT(_target_name ${_target_loc} NAME_WE)
     453  CMAKE_POLICY(SET CMP0026 NEW) # set policy back to 'new'
    452454
    453455  IF(CMAKE_CONFIGURATION_TYPES)
  • code/trunk/src/CMakeLists.txt

    r9595 r10185  
    7373
    7474# Get name to configure the run scripts
     75CMAKE_POLICY(SET CMP0026 OLD) # we only use the file's name, not its actual location, so the old policy is fine
    7576GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION)
    7677GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME)
    7778SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "")
     79CMAKE_POLICY(SET CMP0026 NEW) # set policy back to 'new'
    7880
    7981
Note: See TracChangeset for help on using the changeset viewer.