diff options
author | Rick Pasetto <rick@lindenlab.com> | 2010-02-01 16:29:52 -0800 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2010-02-01 16:29:52 -0800 |
commit | 9430b8de6585e0c0aa980fc87cf73fdbc8a8c5d2 (patch) | |
tree | 7042f19d942290cba79fc85594c91c96a5b061f7 /indra/cmake | |
parent | 83356a779be51f3108a95ed4b680b5fe04800f25 (diff) |
dos2unix these files
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/DragDrop.cmake | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/indra/cmake/DragDrop.cmake b/indra/cmake/DragDrop.cmake index e56264f187..c0424396e5 100644 --- a/indra/cmake/DragDrop.cmake +++ b/indra/cmake/DragDrop.cmake @@ -1,23 +1,23 @@ -# -*- cmake -*-
-
-if (VIEWER)
-
- set(OS_DRAG_DROP ON CACHE BOOL "Build the viewer with OS level drag and drop turned on or off")
-
- if (OS_DRAG_DROP)
-
- if (WINDOWS)
- add_definitions(-DLL_OS_DRAGDROP_ENABLED=1)
- endif (WINDOWS)
-
- if (DARWIN)
- add_definitions(-DLL_OS_DRAGDROP_ENABLED=1)
- endif (DARWIN)
-
- if (LINUX)
- add_definitions(-DLL_OS_DRAGDROP_ENABLED=0)
- endif (LINUX)
-
- endif (OS_DRAG_DROP)
-
-endif (VIEWER)
+# -*- cmake -*- + +if (VIEWER) + + set(OS_DRAG_DROP ON CACHE BOOL "Build the viewer with OS level drag and drop turned on or off") + + if (OS_DRAG_DROP) + + if (WINDOWS) + add_definitions(-DLL_OS_DRAGDROP_ENABLED=1) + endif (WINDOWS) + + if (DARWIN) + add_definitions(-DLL_OS_DRAGDROP_ENABLED=1) + endif (DARWIN) + + if (LINUX) + add_definitions(-DLL_OS_DRAGDROP_ENABLED=0) + endif (LINUX) + + endif (OS_DRAG_DROP) + +endif (VIEWER) |