diff options
author | William Todd Stinson <stinson@lindenlab.com> | 2012-09-21 17:32:28 -0700 |
---|---|---|
committer | William Todd Stinson <stinson@lindenlab.com> | 2012-09-21 17:32:28 -0700 |
commit | 3d5e24d135bd5d2636f075f9ef12ffba2129c61f (patch) | |
tree | 178c3e4d2d410bfa5e6bbc34da44d17372dcad90 /indra/media_plugins | |
parent | fcb010e835d9b894ba6d1012ac8e3a85c5ab3400 (diff) |
Adding the CXX to each CMake project definition.
Diffstat (limited to 'indra/media_plugins')
-rw-r--r-- | indra/media_plugins/base/CMakeLists.txt | 2 | ||||
-rw-r--r-- | indra/media_plugins/example/CMakeLists.txt | 2 | ||||
-rw-r--r-- | indra/media_plugins/gstreamer010/CMakeLists.txt | 2 | ||||
-rw-r--r-- | indra/media_plugins/quicktime/CMakeLists.txt | 2 | ||||
-rw-r--r-- | indra/media_plugins/webkit/CMakeLists.txt | 2 | ||||
-rw-r--r-- | indra/media_plugins/winmmshim/CMakeLists.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/indra/media_plugins/base/CMakeLists.txt b/indra/media_plugins/base/CMakeLists.txt index 3ad94b0c64..d7815050ff 100644 --- a/indra/media_plugins/base/CMakeLists.txt +++ b/indra/media_plugins/base/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(media_plugin_base) +project(media_plugin_base CXX) include(00-Common) include(LLCommon) diff --git a/indra/media_plugins/example/CMakeLists.txt b/indra/media_plugins/example/CMakeLists.txt index 54dc5de1ea..8670dd6e87 100644 --- a/indra/media_plugins/example/CMakeLists.txt +++ b/indra/media_plugins/example/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(media_plugin_example) +project(media_plugin_example CXX) include(00-Common) include(LLCommon) diff --git a/indra/media_plugins/gstreamer010/CMakeLists.txt b/indra/media_plugins/gstreamer010/CMakeLists.txt index 5786bd1e25..9bda543570 100644 --- a/indra/media_plugins/gstreamer010/CMakeLists.txt +++ b/indra/media_plugins/gstreamer010/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(media_plugin_gstreamer010) +project(media_plugin_gstreamer010 CXX) include(00-Common) include(LLCommon) diff --git a/indra/media_plugins/quicktime/CMakeLists.txt b/indra/media_plugins/quicktime/CMakeLists.txt index f0b8f0d167..1be6ff5bbc 100644 --- a/indra/media_plugins/quicktime/CMakeLists.txt +++ b/indra/media_plugins/quicktime/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(media_plugin_quicktime) +project(media_plugin_quicktime CXX) include(00-Common) include(LLCommon) diff --git a/indra/media_plugins/webkit/CMakeLists.txt b/indra/media_plugins/webkit/CMakeLists.txt index b36291f0e8..f0591b74fe 100644 --- a/indra/media_plugins/webkit/CMakeLists.txt +++ b/indra/media_plugins/webkit/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(media_plugin_webkit) +project(media_plugin_webkit CXX) include(00-Common) include(LLCommon) diff --git a/indra/media_plugins/winmmshim/CMakeLists.txt b/indra/media_plugins/winmmshim/CMakeLists.txt index bf74f81809..3a6f8d2273 100644 --- a/indra/media_plugins/winmmshim/CMakeLists.txt +++ b/indra/media_plugins/winmmshim/CMakeLists.txt @@ -1,6 +1,6 @@ # -*- cmake -*- -project(winmm_shim) +project(winmm_shim CXX) ### winmm_shim # *HACK - override msvcrt implementation (intialized on 00-Common) to be |