diff options
author | James Cook <james@lindenlab.com> | 2008-09-09 20:33:05 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2008-09-09 20:33:05 +0000 |
commit | cfde9d568e3a4ded1d91dc3188dbf44f3fa0fce9 (patch) | |
tree | 72ccede7e97b37738b249bc6bc9b7e0898f395bf /indra/newview | |
parent | fd32a26c1bc5b70bac2886042c3b4f8900705d5d (diff) |
Added Windows installer template files to Visual Studio solution for convenience. Reviewed with Ambroff.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index b33061df94..dbb445a93c 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1241,6 +1241,17 @@ set_source_files_properties(${viewer_CHARACTER_FILES} list(APPEND viewer_SOURCE_FILES ${viewer_CHARACTER_FILES}) +if (WINDOWS) + file(GLOB viewer_INSTALLER_FILES installers/windows/*.nsi) + + source_group("Installer Files" FILES ${viewer_INSTALLER_FILES}) + + set_source_files_properties(${viewer_INSTALLER_FILES} + PROPERTIES HEADER_FILE_ONLY TRUE) + + list(APPEND viewer_SOURCE_FILES ${viewer_INSTALLER_FILES}) +endif (WINDOWS) + if (FMOD) set_source_files_properties(llstartup.cpp PROPERTIES COMPILE_FLAGS -DLL_FMOD) |