-
how to add iconv in the 3rdparty? |
Beta Was this translation helpful? Give feedback.
Answered by
rh101
Nov 13, 2024
Replies: 1 comment 1 reply
-
You can add any library you want to your own project. This has nothing to do with Axmol. So, add the iconv library somewhere in your project folder, and link it to your application in the For example, if it is named
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
haoqoo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add any library you want to your own project. This has nothing to do with Axmol.
So, add the iconv library somewhere in your project folder, and link it to your application in the
CMakeLists.txt
file.For example, if it is named
libiconv
, then you link it like this:target_link_libraries(${APP_NAME} libiconv)