[Cmake-commits] [cmake-commits] hoffman committed CMakeLists.txt 1.6.2.1 1.6.2.2
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Feb 19 11:53:48 EST 2009
Update of /cvsroot/CMake/CMake/Tests/BuildDepends/Project
In directory public:/mounts/ram/cvs-serv9055/Tests/BuildDepends/Project
Modified Files:
Tag: CMake-2-6
CMakeLists.txt
Log Message:
BUG: fix xcode depend issue again with a test
Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/BuildDepends/Project/CMakeLists.txt,v
retrieving revision 1.6.2.1
retrieving revision 1.6.2.2
diff -C 2 -d -r1.6.2.1 -r1.6.2.2
*** CMakeLists.txt 15 May 2008 19:40:01 -0000 1.6.2.1
--- CMakeLists.txt 19 Feb 2009 16:53:46 -0000 1.6.2.2
***************
*** 1,6 ****
cmake_minimum_required(VERSION 2.6)
project(testRebuild)
add_library(foo STATIC ${testRebuild_BINARY_DIR}/foo.cxx)
!
# Add a generated header that regenerates when the generator is
# rebuilt.
--- 1,7 ----
cmake_minimum_required(VERSION 2.6)
project(testRebuild)
+ set(CMAKE_OSX_ARCHITECTURES "ppc;i386")
add_library(foo STATIC ${testRebuild_BINARY_DIR}/foo.cxx)
! set_target_properties(foo PROPERTIES OUTPUT_NAME "foolib")
# Add a generated header that regenerates when the generator is
# rebuilt.
***************
*** 22,25 ****
--- 23,27 ----
add_executable(generator generator.cxx)
target_link_libraries(generator foo)
+ set_target_properties(generator PROPERTIES OUTPUT_NAME "gen")
# Build an executable to drive the build and rebuild.
More information about the Cmake-commits
mailing list