mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
Merge topic 'xcode-top-level-only-with-object-library'
64304fe72b
Xcode: Fix post build script for 'top level project only' opt
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4284
This commit is contained in:
commit
7706b6a714
@ -528,7 +528,8 @@ void cmGlobalXCodeGenerator::AddExtraTargets(
|
|||||||
root->GetMakefile()->IsOn("CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY");
|
root->GetMakefile()->IsOn("CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY");
|
||||||
bool isTopLevel =
|
bool isTopLevel =
|
||||||
!root->GetStateSnapshot().GetBuildsystemDirectoryParent().IsValid();
|
!root->GetStateSnapshot().GetBuildsystemDirectoryParent().IsValid();
|
||||||
if (regenerate && (isTopLevel || !generateTopLevelProjectOnly)) {
|
bool isGenerateProject = isTopLevel || !generateTopLevelProjectOnly;
|
||||||
|
if (regenerate && isGenerateProject) {
|
||||||
this->CreateReRunCMakeFile(root, gens);
|
this->CreateReRunCMakeFile(root, gens);
|
||||||
std::string file =
|
std::string file =
|
||||||
this->ConvertToRelativeForMake(this->CurrentReRunCMakeMakefile);
|
this->ConvertToRelativeForMake(this->CurrentReRunCMakeMakefile);
|
||||||
@ -558,7 +559,8 @@ void cmGlobalXCodeGenerator::AddExtraTargets(
|
|||||||
// run the depend check makefile as a post build rule
|
// run the depend check makefile as a post build rule
|
||||||
// this will make sure that when the next target is built
|
// this will make sure that when the next target is built
|
||||||
// things are up-to-date
|
// things are up-to-date
|
||||||
if (target->GetType() == cmStateEnums::OBJECT_LIBRARY) {
|
if (isGenerateProject &&
|
||||||
|
target->GetType() == cmStateEnums::OBJECT_LIBRARY) {
|
||||||
commandLines.front().back() = // fill placeholder
|
commandLines.front().back() = // fill placeholder
|
||||||
this->PostBuildMakeTarget(target->GetName(), "$(CONFIGURATION)");
|
this->PostBuildMakeTarget(target->GetName(), "$(CONFIGURATION)");
|
||||||
gen->AddCustomCommandToTarget(
|
gen->AddCustomCommandToTarget(
|
||||||
|
@ -8,6 +8,16 @@ run_cmake(XcodeAttributeLocation)
|
|||||||
run_cmake(XcodeAttributeGenex)
|
run_cmake(XcodeAttributeGenex)
|
||||||
run_cmake(XcodeAttributeGenexError)
|
run_cmake(XcodeAttributeGenexError)
|
||||||
run_cmake(XcodeGenerateTopLevelProjectOnly)
|
run_cmake(XcodeGenerateTopLevelProjectOnly)
|
||||||
|
|
||||||
|
function(XcodeGenerateTopLevelProjectOnlyWithObjectLibrary)
|
||||||
|
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/XcodeGenerateTopLevelProjectOnlyWithObjectLibrary-build)
|
||||||
|
run_cmake(XcodeGenerateTopLevelProjectOnlyWithObjectLibrary)
|
||||||
|
set(RunCMake_TEST_NO_CLEAN 1)
|
||||||
|
run_cmake_command(XcodeGenerateTopLevelProjectOnlyWithObjectLibrary-build ${CMAKE_COMMAND} --build . --target shared_lib)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
XcodeGenerateTopLevelProjectOnlyWithObjectLibrary()
|
||||||
|
|
||||||
run_cmake(XcodeObjectNeedsEscape)
|
run_cmake(XcodeObjectNeedsEscape)
|
||||||
run_cmake(XcodeObjectNeedsQuote)
|
run_cmake(XcodeObjectNeedsQuote)
|
||||||
run_cmake(XcodeOptimizationFlags)
|
run_cmake(XcodeOptimizationFlags)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
set(CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY TRUE)
|
||||||
|
project(XcodeGenerateTopLevelProjectOnly NONE)
|
||||||
|
add_subdirectory(subproject_with_object_lib)
|
@ -0,0 +1,7 @@
|
|||||||
|
project(subproject_with_object_lib)
|
||||||
|
|
||||||
|
add_library(object_lib_dependency OBJECT dummy.cpp)
|
||||||
|
|
||||||
|
add_library(shared_lib SHARED dummy.cpp)
|
||||||
|
target_sources(shared_lib PRIVATE $<TARGET_OBJECTS:object_lib_dependency>)
|
||||||
|
set_target_properties(shared_lib PROPERTIES MACOSX_RPATH ON)
|
@ -0,0 +1,5 @@
|
|||||||
|
namespace {
|
||||||
|
void dummy()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user