Reputation: 1041
Is there a setting in CLion to have the size of the final executable show after a build?
Upvotes: 0
Views: 187
Reputation: 926
You can use external tools for it. Please try to do the following:
For example, you can use size.exe MinGW tool if you on the Windows platform.
<path_to_mingw>\bin\size.exe $CMakeCurrentProductFile$
Upvotes: 1