Skip to content
Snippets Groups Projects
Commit 91cf520f authored by Patrick MADELA's avatar Patrick MADELA
Browse files

Set default name for cmake_file_name

parent cb46bf38
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,6 @@ class yat4tangoRecipe(ConanFile):
def package_info(self):
self.cpp_info.libs = ["yat4tango"]
self.cpp_info.set_property("cmake_file_name", "YAT4TANGO")
if self.settings.os == "Windows":
self.cpp_info.defines += ["WIN32_LEAN_AND_MEAN"]
......
cmake_minimum_required(VERSION 3.15)
project(PackageTest CXX)
find_package(YAT4TANGO CONFIG REQUIRED)
find_package(yat4tango CONFIG REQUIRED)
add_executable(test_package src/test_package.cpp)
target_link_libraries(test_package ${YAT4TANGO_LIBRARIES})
target_link_libraries(test_package ${yat4tango_LIBRARIES})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment