[cmake-commits] martink committed CMakeLists.txt NONE 1.1 vcl_algorithm+vcl_pair+double.foo.c NONE 1.1 vcl_algorithm_vcl_pair_double.foo.c NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Feb 19 12:21:50 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SubDirSpaces
In directory public:/mounts/ram/cvs-serv14018

Added Files:
	CMakeLists.txt vcl_algorithm+vcl_pair+double.foo.c 
	vcl_algorithm_vcl_pair_double.foo.c 
Log Message:
ENH: new test for spaces in the tree structure


--- NEW FILE: CMakeLists.txt ---
PROJECT(SUBDIR)
SUBDIRS(Executable EXCLUDE_FROM_ALL "Some Examples")
WRITE_FILE(${SUBDIR_BINARY_DIR}/ShouldBeHere "This file should exist.")
#WATCOM WMAKE does not support + in the name of a file!
IF(WATCOM)
  SET(PLUS_NAME_FILES 
    "Another Subdir/pair_int.int.c"
    vcl_algorithm_vcl_pair_double.foo.c)
ELSE(WATCOM)
    SET(PLUS_NAME_FILES 
    "Another Subdir/pair+int.int.c"
    vcl_algorithm+vcl_pair+double.foo.c)
ENDIF(WATCOM)

ADD_EXECUTABLE(TestFromSubdir
  "Another Subdir/testfromsubdir.c"
  "Another Subdir/secondone"
  ${PLUS_NAME_FILES}
  )

AUX_SOURCE_DIRECTORY(ThirdSubDir SOURCES)
IF(WATCOM)
  FOREACH(f ${SOURCES})
    IF("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
    ELSE("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
      SET(SOURCES2 ${f} ${SOURCES2})
    ENDIF("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
  ENDFOREACH(f)
  SET(SOURCES ${SOURCES2})
  SET(SOURCES ${SOURCES} 
    vcl_algorithm_vcl_pair_double.foo.c)
ELSE(WATCOM)
  FOREACH(f ${SOURCES})
    IF("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
    ELSE("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
      SET(SOURCES2 ${f} ${SOURCES2})
    ENDIF("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
  ENDFOREACH(f)
  SET(SOURCES ${SOURCES2})
  SET(SOURCES ${SOURCES} 
    vcl_algorithm+vcl_pair+double.foo.c)
ENDIF(WATCOM)  
ADD_EXECUTABLE(TestWithAuxSourceDir ${SOURCES})

--- NEW FILE: vcl_algorithm+vcl_pair+double.foo.c ---
#include <stdio.h>

void vcl_stuff()
{
  printf("Placeholder for a file with strange name\n");
}

--- NEW FILE: vcl_algorithm_vcl_pair_double.foo.c ---
#include <stdio.h>

void vcl_stuff()
{
  printf("Placeholder for a file with strange name\n");
}



More information about the Cmake-commits mailing list