Log exact cmake command used by conan.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
1ddbfb09b9
commit
03d1ff23e1
|
@ -32,8 +32,8 @@ if (STATICC)
|
||||||
endif ()
|
endif ()
|
||||||
endif (STATICC)
|
endif (STATICC)
|
||||||
|
|
||||||
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
|
||||||
if (NOT DEFINED CONAN_EXPORTED)
|
if (NOT DEFINED CONAN_EXPORTED)
|
||||||
|
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
||||||
add_executable(ArbutilsTests ${TEST_FILES} extern/catch.hpp)
|
add_executable(ArbutilsTests ${TEST_FILES} extern/catch.hpp)
|
||||||
target_link_libraries(ArbutilsTests Arbutils)
|
target_link_libraries(ArbutilsTests Arbutils)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
|
@ -30,6 +30,7 @@ class ArbutilsConan(ConanFile):
|
||||||
cmake.definitions["STATICC"] = "On"
|
cmake.definitions["STATICC"] = "On"
|
||||||
|
|
||||||
cmake.configure()
|
cmake.configure()
|
||||||
|
self.output.info("running `cmake " + cmake.command_line + "`")
|
||||||
cmake.build()
|
cmake.build()
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
|
|
Loading…
Reference in New Issue