Skip to content

Commit

Permalink
Fix hook errors
Browse files Browse the repository at this point in the history
  • Loading branch information
planetmarshall committed Jun 13, 2020
1 parent 78029bd commit 07d0522
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions recipes/pcl/all/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
cmake_minimum_required(VERSION 3.10)
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
add_subdirectory(pcl)
1 change: 1 addition & 0 deletions recipes/pcl/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class ConanRecipe(ConanFile):
description = "Point Cloud Library"
license = "BSD-3-Clause"
homepage = "https://pointclouds.org/"
url = "https://github.com/conan-io/conan-center-index"
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
Expand Down
4 changes: 0 additions & 4 deletions recipes/pcl/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ def build(self):
cmake.configure()
cmake.build()

def imports(self):
self.copy("*.dll", "bin", "bin")

def test(self):
os.chdir('bin')
self.run('.{}pcl_test_package'.format(os.sep))

0 comments on commit 07d0522

Please sign in to comment.