Skip to content

Commit 0154bed

Browse files
committed
fix: cannot link nertc libs
Signed-off-by: Dylan <2894220@gmail.com>
1 parent 6cc922b commit 0154bed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/nertc/all/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def package(self):
2727
if (self.settings.os == 'Windows'):
2828
arch = 'x64' if self.settings.arch == 'x86_64' else 'x86'
2929
self.copy("*.dll", src=os.path.join('dll', arch), dst="bin")
30-
self.copy("*.lib", src=os.path.join('lib', arch), dst="lib")
30+
self.copy("*.lib", src=os.path.join('libs', arch), dst="lib")
3131
self.copy("*.h", src='api', dst="include")
3232

3333
def package_info(self):

0 commit comments

Comments
 (0)