diff --git a/test_package/conanfile.py b/test_package/conanfile.py index 7f8f999..ca3788b 100644 --- a/test_package/conanfile.py +++ b/test_package/conanfile.py @@ -1,20 +1,20 @@ import os from conans import ConanFile, CMake, tools -class KconfigTestConan(ConanFile): +class KCoreAddonsTestConan(ConanFile): settings = "os", "compiler", "build_type", "arch" generators = "cmake" def build(self): cmake = CMake(self) # Current dir is "test_package/build/" and CMakeLists.txt is # in "test_package" cmake.configure() cmake.build() def test(self): if not tools.cross_building(self.settings): os.chdir("bin") self.run(".%sPackageTest" % os.sep)