Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set dllname_img for every platform #9

Merged
merged 2 commits into from Sep 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions iup.nim
Expand Up @@ -40,8 +40,10 @@ when defined(windows):
const dllname_img = "iupimglib(|30|27|26|25|24).dll"
elif defined(macosx):
const dllname = "libiup(|3.0|2.7|2.6|2.5|2.4).dylib"
const dllname_img = "libiupimglib(|3.0|2.7|2.6|2.5|2.4).dylib"
else:
const dllname = "libiup(|3.0|2.7|2.6|2.5|2.4).so(|.1)"
const dllname_img = "libiupimglib(|3.0|2.7|2.6|2.5|2.4).so(|.1)"

const
IUP_NAME* = "IUP - Portable User Interface"
Expand Down