Squashed 'cmake/' content from commit 2d25566

git-subtree-dir: cmake
git-subtree-split: 2d25566a1c5162ce3fd6bfc268d5665de182af89
This commit is contained in:
Ryan Pavlik
2010-11-11 10:59:10 -06:00
commit c1d65c7f1f
177 changed files with 15885 additions and 0 deletions

20
ghost-fake-stl/iostream.h Normal file
View File

@@ -0,0 +1,20 @@
/** @file list.h
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <iostream>
using std::istream;
using std::ostream;
using std::cerr;
using std::endl;

20
ghost-fake-stl/list.h Normal file
View File

@@ -0,0 +1,20 @@
/** @file list.h
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <list>
using std::list;
// Disable dll export that depends on the SGI STL implementation
#undef GHOST_EXTRA_TEMPLATE_DECLARATIONS

17
ghost-fake-stl/set.h Normal file
View File

@@ -0,0 +1,17 @@
/** @file set.h
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <set>
using std::set;

20
ghost-fake-stl/vector.h Normal file
View File

@@ -0,0 +1,20 @@
/** @file vector.h
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <vector>
using std::vector;
// Disable dll export that depends on the SGI STL implementation
#undef GHOST_EXTRA_TEMPLATE_DECLARATIONS