-
Notifications
You must be signed in to change notification settings - Fork 980
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also add a simple static lib functional test as well as api to create libs.
- Loading branch information
Showing
4 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
from conan.internal.api.new.cmake_lib import source_cpp, source_h | ||
|
||
|
||
conanfile_sources = ''' | ||
import os | ||
from conan import ConanFile, tools | ||
from conan.tools.qbs import Qbs | ||
from conan.tools.files import copy, collect_libs | ||
class {{package_name}}Recipe(ConanFile): | ||
name = "{{name}}" | ||
version = "{{version}}" | ||
exports_sources = "*.cpp", "*.h", "*.qbs" | ||
settings = "os", "compiler", "arch" | ||
def build(self): | ||
qbs = Qbs(self) | ||
qbs.profile = "" | ||
qbs.build() | ||
def package(self): | ||
qbs = Qbs(self) | ||
qbs.profile = "" | ||
qbs.install() | ||
def package_info(self): | ||
self.cpp_info.libs = collect_libs(self) | ||
''' | ||
|
||
qbs_file = ''' | ||
Library { | ||
type: "staticlibrary" | ||
files: [ "{{name}}.h", "{{name}}.cpp" ] | ||
Depends { name: "cpp" } | ||
Depends { name: "bundle" } | ||
bundle.isBundle: false | ||
install: true | ||
} | ||
''' | ||
|
||
qbs_lib_files = {"conanfile.py": conanfile_sources, | ||
"{{name}}.qbs": qbs_file, | ||
"{{name}}.cpp": source_cpp, | ||
"{{name}}.h": source_h} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import pytest | ||
|
||
from conan.internal.api.new.cmake_lib import source_cpp, source_h | ||
from conan.internal.api.new.qbs_lib import qbs_file, conanfile_sources | ||
from conan.test.utils.tools import TestClient | ||
from jinja2 import Template | ||
|
||
|
||
def gen_file(template, **context): | ||
t = Template(template) | ||
return t.render(**context) | ||
|
||
|
||
@pytest.mark.tool("qbs") | ||
def test_qbs_static_lib(): | ||
client = TestClient() | ||
|
||
context = { | ||
"name": "hello", | ||
"version": "2.0", | ||
"package_name": "hello" | ||
} | ||
|
||
client.save({ | ||
"conanfile.py": gen_file(conanfile_sources, **context), | ||
"hello.cpp": gen_file(source_cpp, **context), | ||
"hello.h": gen_file(source_h, **context), | ||
"hello.qbs": gen_file(qbs_file, **context), | ||
}, clean_first=True) | ||
|
||
client.run("create .") | ||
assert "compiling hello.cpp" in client.out | ||
|
||
|
||
@pytest.mark.tool("qbs") | ||
def test_api_qbs_create_lib(): | ||
client = TestClient() | ||
client.run("new qbs_lib -d name=hello -d version=1.0") | ||
client.run("create .") | ||
assert "compiling hello.cpp" in client.out |