Skip to content

Commit a3d04f8

Browse files
committed
conan: fix link library name
1 parent 7ed03bc commit a3d04f8

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

build/conan/conanfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def package(self):
9191
copy(conanfile=self, pattern="*.a", dst=dst_lib_dir, src=src_rel_dir, keep_path=False)
9292

9393
def package_info(self):
94-
self.cpp_info.libs = [self.name]
94+
libruisapp = self.name + "-opengles-sdl"
95+
self.cpp_info.libs = [libruisapp]
9596

9697
def package_id(self):
9798
# change package id only when minor or major version changes, i.e. when ABI breaks

src/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ ifeq ($(os), linux)
148148
$(eval $(call ruisapp_rules,opengles,sdl))
149149

150150
else
151-
$(eval $(call ruisapp_rules,opengl,))
151+
$(eval $(call ruisapp_rules,opengl,windows))
152152
endif
153153

154154
# clear variable

0 commit comments

Comments
 (0)