We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcfe997 commit daaecf4Copy full SHA for daaecf4
.github/workflows/main.yml
@@ -42,7 +42,7 @@ jobs:
42
retention-days: 1
43
- name: Build conan package
44
run: |
45
- conan create . -o tixi3:shared=True
+ conan create . -o tixi3:shared=True -s build_type=${{ matrix.config }}
46
47
build-win64:
48
strategy:
conanfile.py
@@ -126,7 +126,11 @@ def _module_file_rel_path(self):
126
127
def package_info(self):
128
self.cpp_info.includedirs.append(os.path.join("include", "tixi3"))
129
- self.cpp_info.libs = ['tixi3']
+
130
+ if self.settings.build_type != "Debug":
131
+ self.cpp_info.libs = ['tixi3']
132
+ else:
133
+ self.cpp_info.libs = ['tixi3-d']
134
135
if self.settings.os == "Windows":
136
self.cpp_info.system_libs = ['Shlwapi']
0 commit comments