2005-09-13 18:40:38 +04:00
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2005-04-12 17:35:40 +04:00
|
|
|
IF ("${PROJECT_SOURCE_DIR}" STREQUAL "${ANOTHER_PROJ_SOURCE_DIR}")
|
2005-07-14 20:21:49 +04:00
|
|
|
SET(BUILD_SHARED_LIBS 1)
|
2007-03-16 17:34:25 +03:00
|
|
|
|
|
|
|
# Construct a source file outside the tree whose full path is close to
|
|
|
|
# the path length limit. This will cause the full path to the object
|
|
|
|
# file in the build tree to exceed the maximum path length which will
|
|
|
|
# test cmLocalGenerator::CreateSafeUniqueObjectFileName.
|
|
|
|
GET_FILENAME_COMPONENT(DEEPDIR
|
|
|
|
${OutOfSource_BINARY_DIR}/../OutOfSourceDeep/deeper ABSOLUTE)
|
2007-03-20 15:16:35 +03:00
|
|
|
|
|
|
|
# The maximum allowed path length on Windows is near this value.
|
|
|
|
SET(MAXPATH "250")
|
|
|
|
|
|
|
|
# VS8 adds "OutOfSource/SubDir/OutOfSourceSubdir/../../../" to the
|
|
|
|
# path of the source file for no good reason. Reduce the length
|
|
|
|
# limit by 46 characters to account for it. It should still be long
|
|
|
|
# enough to require special object file name conversion.
|
|
|
|
IF(${CMAKE_GENERATOR} MATCHES "Visual Studio 8")
|
|
|
|
MATH(EXPR MAXPATH "${MAXPATH} - 46")
|
|
|
|
ENDIF(${CMAKE_GENERATOR} MATCHES "Visual Studio 8")
|
|
|
|
|
|
|
|
# MAXPATH less 25 for last /and/deeper/simple.cxx part and small safety
|
|
|
|
MATH(EXPR MAXPATH "${MAXPATH} - 25")
|
2007-03-16 17:34:25 +03:00
|
|
|
STRING(LENGTH "${DEEPDIR}" DEEPDIR_LEN)
|
|
|
|
WHILE("${DEEPDIR_LEN}" LESS "${MAXPATH}")
|
|
|
|
SET(DEEPDIR ${DEEPDIR}/and/deeper)
|
|
|
|
STRING(LENGTH "${DEEPDIR}" DEEPDIR_LEN)
|
|
|
|
ENDWHILE("${DEEPDIR_LEN}" LESS "${MAXPATH}")
|
|
|
|
SET(DEEPSRC ${DEEPDIR}/simple.cxx)
|
|
|
|
STRING(LENGTH "${DEEPSRC}" DEEPSRC_LEN)
|
|
|
|
CONFIGURE_FILE(simple.cxx.in ${DEEPSRC} COPYONLY)
|
|
|
|
|
2007-03-21 14:16:32 +03:00
|
|
|
# Watcom WMake seems to have problems with long command lines. Just
|
|
|
|
# disable this part of the test until it is resolved.
|
|
|
|
IF(${CMAKE_GENERATOR} MATCHES "Watcom WMake")
|
|
|
|
SET(DEEPSRC "")
|
|
|
|
ADD_DEFINITIONS(-DNO_DEEPSRC)
|
|
|
|
ENDIF(${CMAKE_GENERATOR} MATCHES "Watcom WMake")
|
|
|
|
|
2005-07-14 20:21:49 +04:00
|
|
|
ADD_LIBRARY(testlib testlib.cxx)
|
2007-03-16 17:34:25 +03:00
|
|
|
ADD_EXECUTABLE (simple simple.cxx ../simple.cxx ${DEEPSRC})
|
2006-10-10 05:25:58 +04:00
|
|
|
TARGET_LINK_LIBRARIES(simple testlib outlib)
|
2005-04-12 17:35:40 +04:00
|
|
|
ENDIF ("${PROJECT_SOURCE_DIR}" STREQUAL "${ANOTHER_PROJ_SOURCE_DIR}")
|
|
|
|
|
2005-09-13 18:40:38 +04:00
|
|
|
# test getting a definition from a subdir
|
|
|
|
SET (WEASELS SIZZLING)
|