[cmake-commits] martink committed CMakeLists.txt NONE 1.1 example1.cxx NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Feb 19 12:23:39 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SubDirSpaces/Some Examples/example1
In directory public:/mounts/ram/cvs-serv14281/Some Examples/example1

Added Files:
	CMakeLists.txt example1.cxx 
Log Message:
ENH: new test for spaces in the tree structure


--- NEW FILE: CMakeLists.txt ---
PROJECT(example1)
ADD_EXECUTABLE(example1 example1.cxx)

ADD_CUSTOM_COMMAND(TARGET example1 POST_BUILD
  COMMAND "${CMAKE_COMMAND}" ARGS -E remove ${SUBDIR_BINARY_DIR}/ShouldBeHere
  COMMENT "Remove marker file that should exist because this should not be run")

--- NEW FILE: example1.cxx ---
#include <stdio.h>

int main()
{
  printf("example1\n");
  return 0;
}



More information about the Cmake-commits mailing list