17 lines
475 B
Python
17 lines
475 B
Python
|
from conans import ConanFile, CMake
|
||
|
|
||
|
|
||
|
class PROJECTNAMEConan(ConanFile):
|
||
|
settings = "os", "compiler", "build_type", "arch"
|
||
|
requires = "gtest/1.8.1@bincrafters/stable"
|
||
|
generators = "cmake", "gcc", "txt"
|
||
|
|
||
|
def imports(self):
|
||
|
self.copy("*.dll", dst="bin", src="bin") # From bin to bin
|
||
|
self.copy("*.dylib*", dst="bin", src="lib") # From lib to bin
|
||
|
|
||
|
def build(self):
|
||
|
cmake = CMake(self)
|
||
|
cmake.configure()
|
||
|
cmake.build()
|