RecipeAddShortcutToStartMenu

From KitwarePublic
Revision as of 14:40, 9 October 2009 by Shadowland (talk | contribs) (New page: If you application builds for multiple platforms and you'd like your application to show up in the Start Menu in Windows XP, add this logic to the end of your CMakeLists.txt file before "i...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

If you application builds for multiple platforms and you'd like your application to show up in the Start Menu in Windows XP, add this logic to the end of your CMakeLists.txt file before "include(CPack)":


if( WIN32 )
    SET(CPACK_PACKAGE_EXECUTABLES "Target_Name" "Target Name")
endif()

Now the application shows up with a shortcut in the Start Menu on Windows only with the name "Target Name"