[Cmake-commits] [cmake-commits] david.cole committed CMakeLists.txt 1.11 1.12 fooExtensionlessResource NONE 1.1 fooPublicExtensionlessHeader NONE 1.1 fooPrivateExtensionlessHeader NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Sep 5 15:51:21 EDT 2008


Update of /cvsroot/CMake/CMake/Tests/Framework
In directory public:/mounts/ram/cvs-serv12944/Tests/Framework

Modified Files:
	CMakeLists.txt 
Added Files:
	fooExtensionlessResource fooPublicExtensionlessHeader 
	fooPrivateExtensionlessHeader 
Log Message:
BUG: Fix issue #7046 - make sure extensionless headers and resource files work with the Xcode generator. Also fix incorrect mappings in the lastKnownFileType code. Add some extensionless files to the Framework test.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Framework/CMakeLists.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -C 2 -d -r1.11 -r1.12
*** CMakeLists.txt	14 Apr 2008 19:27:27 -0000	1.11
--- CMakeLists.txt	5 Sep 2008 19:51:19 -0000	1.12
***************
*** 6,11 ****
--- 6,14 ----
    foo.h
    foo2.h
+   fooExtensionlessResource
    fooPublic.h
+   fooPublicExtensionlessHeader
    fooPrivate.h
+   fooPrivateExtensionlessHeader
    fooNeither.h
    fooBoth.h
***************
*** 21,27 ****
    FRAMEWORK TRUE
    FRAMEWORK_VERSION ${foo_ver}
!   PRIVATE_HEADER "fooPrivate.h;fooBoth.h"
!   PUBLIC_HEADER "foo.h;foo2.h;fooPublic.h;fooBoth.h"
!   RESOURCE "test.lua"
    INSTALL_NAME_DIR "@executable_path/../../../Library/Frameworks"
    DEBUG_POSTFIX -d
--- 24,30 ----
    FRAMEWORK TRUE
    FRAMEWORK_VERSION ${foo_ver}
!   PRIVATE_HEADER "fooPrivate.h;fooBoth.h;fooPrivateExtensionlessHeader"
!   PUBLIC_HEADER "foo.h;foo2.h;fooPublic.h;fooBoth.h;fooPublicExtensionlessHeader"
!   RESOURCE "fooExtensionlessResource;test.lua"
    INSTALL_NAME_DIR "@executable_path/../../../Library/Frameworks"
    DEBUG_POSTFIX -d
***************
*** 58,66 ****
--- 61,73 ----
    foo.h
    foo2.h
+   fooExtensionlessResource
    fooPublic.h
+   fooPublicExtensionlessHeader
    fooPrivate.h
+   fooPrivateExtensionlessHeader
    fooNeither.h
    fooBoth.h
    test.lua
+   fooDeepPublic.h
  )
  set_target_properties(fooStatic PROPERTIES

--- NEW FILE: fooExtensionlessResource ---
fooExtensionlessResource

--- NEW FILE: fooPrivateExtensionlessHeader ---
fooPrivateExtensionlessHeader

--- NEW FILE: fooPublicExtensionlessHeader ---
fooPublicExtensionlessHeader



More information about the Cmake-commits mailing list