-
Notifications
You must be signed in to change notification settings - Fork 989
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- CMakeDeps: add cmake_target_aliases property
Signed-off-by: SSE4 <tomskside@gmail.com>
- Loading branch information
Showing
2 changed files
with
121 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
87 changes: 87 additions & 0 deletions
87
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,87 @@ | ||
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): | ||
self.cpp_info.set_property("cmake_target_aliases", {"hello": "hello::hello"}, "CMakeDeps") | ||
""") | ||
|
||
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": "hello::buy"}, "CMakeDeps") | ||
""") | ||
|
||
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 |