-
Notifications
You must be signed in to change notification settings - Fork 986
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: create alias targets (#8533)
* - CMakeDeps: add cmake_target_aliases property Signed-off-by: SSE4 <[email protected]> * - automatically deduce an alias target Signed-off-by: SSE4 <[email protected]> * Update conans/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_aliases.py Co-authored-by: Luis Martinez de Bartolome Izquierdo <[email protected]> * Update conans/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_aliases.py Co-authored-by: Luis Martinez de Bartolome Izquierdo <[email protected]> * - add comment Signed-off-by: SSE4 <[email protected]> * - use cpp_info instead of new_cpp_info Signed-off-by: SSE4 <[email protected]> * - remove useless checks Signed-off-by: SSE4 <[email protected]> * - show a warning if target already exists Signed-off-by: SSE4 <[email protected]> * - test case for cmake_target_name/cmake_target_namespace Signed-off-by: SSE4 <[email protected]> Co-authored-by: Luis Martinez de Bartolome Izquierdo <[email protected]>
- Loading branch information
Showing
2 changed files
with
167 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
conans/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_aliases.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import textwrap | ||
import pytest | ||
|
||
from conans.test.utils.tools import TestClient | ||
|
||
consumer = textwrap.dedent(""" | ||
from conans import ConanFile | ||
from conan.tools.cmake import CMake | ||
class Consumer(ConanFile): | ||
name = "consumer" | ||
version = "1.0" | ||
settings = "os", "compiler", "build_type", "arch" | ||
generators = "CMakeDeps", "CMakeToolchain" | ||
exports_sources = ["CMakeLists.txt"] | ||
requires = "hello/1.0" | ||
def build(self): | ||
cmake = CMake(self) | ||
cmake.configure() | ||
cmake.build() | ||
""") | ||
|
||
|
||
@pytest.mark.tool_cmake | ||
def test_global_alias(): | ||
conanfile = textwrap.dedent(""" | ||
from conans import ConanFile | ||
class Hello(ConanFile): | ||
name = "hello" | ||
version = "1.0" | ||
settings = "os", "compiler", "build_type", "arch" | ||
def package_info(self): | ||
# the default global target is "hello::hello" | ||
self.cpp_info.set_property("cmake_target_aliases", ["hello"]) | ||
""") | ||
|
||
cmakelists = textwrap.dedent(""" | ||
cmake_minimum_required(VERSION 2.8) | ||
find_package(hello REQUIRED) | ||
get_target_property(link_libraries hello INTERFACE_LINK_LIBRARIES) | ||
message("hello link libraries: ${link_libraries}") | ||
""") | ||
|
||
client = TestClient() | ||
client.save({"conanfile.py": conanfile}) | ||
client.run("create .") | ||
|
||
client.save({"conanfile.py": consumer, "CMakeLists.txt": cmakelists}) | ||
client.run("create .") | ||
|
||
assert "hello link libraries: hello::hello" in client.out | ||
|
||
|
||
@pytest.mark.tool_cmake | ||
def test_component_alias(): | ||
conanfile = textwrap.dedent(""" | ||
from conans import ConanFile | ||
class Hello(ConanFile): | ||
name = "hello" | ||
version = "1.0" | ||
settings = "os", "compiler", "build_type", "arch" | ||
def package_info(self): | ||
self.cpp_info.components["buy"].set_property("cmake_target_aliases", | ||
["hola::adios"]) | ||
""") | ||
|
||
cmakelists = textwrap.dedent(""" | ||
cmake_minimum_required(VERSION 2.8) | ||
find_package(hello REQUIRED) | ||
get_target_property(link_libraries hola::adios INTERFACE_LINK_LIBRARIES) | ||
message("hola::adios link libraries: ${link_libraries}") | ||
""") | ||
|
||
client = TestClient() | ||
client.save({"conanfile.py": conanfile}) | ||
client.run("create .") | ||
|
||
client.save({"conanfile.py": consumer, "CMakeLists.txt": cmakelists}) | ||
client.run("create .") | ||
|
||
assert "hola::adios link libraries: hello::buy" in client.out | ||
|
||
|
||
@pytest.mark.tool_cmake | ||
def test_custom_name(): | ||
conanfile = textwrap.dedent(""" | ||
from conans import ConanFile | ||
class Hello(ConanFile): | ||
name = "hello" | ||
version = "1.0" | ||
settings = "os", "compiler", "build_type", "arch" | ||
def package_info(self): | ||
self.cpp_info.set_property("cmake_target_namespace", "ola") | ||
self.cpp_info.set_property("cmake_target_name", "comprar") | ||
self.cpp_info.set_property("cmake_target_aliases", ["hello"]) | ||
""") | ||
|
||
cmakelists = textwrap.dedent(""" | ||
cmake_minimum_required(VERSION 2.8) | ||
find_package(hello REQUIRED) | ||
get_target_property(link_libraries hello INTERFACE_LINK_LIBRARIES) | ||
message("hello link libraries: ${link_libraries}") | ||
""") | ||
|
||
client = TestClient() | ||
client.save({"conanfile.py": conanfile}) | ||
client.run("create .") | ||
|
||
client.save({"conanfile.py": consumer, "CMakeLists.txt": cmakelists}) | ||
client.run("create .") | ||
|
||
assert "hello link libraries: ola::comprar" in client.out |