Question about resources
已回答
Hey everyone,
i am fairly new to programming (took a course at university, language C) and im currently trying to get into creating windows applications.
My question is about resource files (xxx.rc). I can neither figure out how to create these files in CLion nor how to integrate them into my project (so they get compiled properly).
If you could help me with this or clarify my misconceptions about this topic i would be very grateful!!
thanks in advance & greetings
qiq
请先登录再写评论。
Hello!
You can work with them as with other files. For example, this is a procedure of adding an icon to an application:
my.rc:my.rcto the project in CMakeLists.txt (add_executable(hello_world main.cpp my.rc)).