RecipeAddShortcutToStartMenu: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
(Replace content with link to new CMake community wiki)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
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)":
{{CMake/Template/Moved}}


 
This page has moved [https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/recipe/AddShortcutToStartMenu here].
<pre>if( WIN32 AND NOT UNIX )
    SET(CPACK_PACKAGE_EXECUTABLES "Target_Name" "Target Name")
endif()</pre>
 
Now the application shows up with a shortcut in the Start Menu on Windows only with the name "Target Name"

Latest revision as of 15:41, 30 April 2018


The CMake community Wiki has moved to the Kitware GitLab Instance.

This page has moved here.