diff options
author | David Cole <david.cole@kitware.com> | 2012-08-13 13:28:07 -0400 |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-08-13 13:28:07 -0400 |
commit | c1163632de2467f44c3774d401a04a76f1444c2f (patch) | |
tree | 4a02f471c292397d52865236e65b940233577d61 /Tests | |
parent | 0d28661999feed72e00555a410184670dc82edf7 (diff) | |
parent | b237dbd8c35c2ec7b43161612fd03e89d85756e6 (diff) | |
download | cmake-c1163632de2467f44c3774d401a04a76f1444c2f.tar.gz |
Merge topic 'xcode-object-dir'
b237dbd Xcode: Fix object library references in multi-project trees (#13452)
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/ObjectLibrary/A/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Tests/ObjectLibrary/B/CMakeLists.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Tests/ObjectLibrary/A/CMakeLists.txt b/Tests/ObjectLibrary/A/CMakeLists.txt index 121a8acbaf..04ab02f16f 100644 --- a/Tests/ObjectLibrary/A/CMakeLists.txt +++ b/Tests/ObjectLibrary/A/CMakeLists.txt @@ -1,3 +1,4 @@ +project(ObjectLibraryA) # Add -fPIC so objects can be used in shared libraries. # TODO: Need property for this. if(CMAKE_SHARED_LIBRARY_C_FLAGS AND NOT WATCOM) diff --git a/Tests/ObjectLibrary/B/CMakeLists.txt b/Tests/ObjectLibrary/B/CMakeLists.txt index 67172d1324..4b0b07d1c6 100644 --- a/Tests/ObjectLibrary/B/CMakeLists.txt +++ b/Tests/ObjectLibrary/B/CMakeLists.txt @@ -1,3 +1,4 @@ +project(ObjectLibraryB) if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 6") # VS 6 generator does not use per-target object locations. set(vs6 _vs6) |