diff options
| author | Joe Ludwig <[email protected]> | 2013-07-04 11:20:31 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-07-04 11:20:31 -0700 |
| commit | 77b376f8a0d8d172c51729762f80bb394534aa41 (patch) | |
| tree | 79897a015745704f7202eaa6648c18f2e5312df4 /sp/src/mathlib/mathlib.vpc | |
| parent | Adding a CONTRIBUTING file so the rights that GitHub users grant to Valve wit... (diff) | |
| download | source-sdk-2013-77b376f8a0d8d172c51729762f80bb394534aa41.tar.xz source-sdk-2013-77b376f8a0d8d172c51729762f80bb394534aa41.zip | |
* Switched the SDK from checked-in projects to VPC, the Valve Project Creator. See the Getting Started document on the wiki for details.
* Pulled in bug fixes from HL2 and HL2MP.
Diffstat (limited to 'sp/src/mathlib/mathlib.vpc')
| -rw-r--r-- | sp/src/mathlib/mathlib.vpc | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/sp/src/mathlib/mathlib.vpc b/sp/src/mathlib/mathlib.vpc new file mode 100644 index 00000000..59a0c95f --- /dev/null +++ b/sp/src/mathlib/mathlib.vpc @@ -0,0 +1,84 @@ +//-----------------------------------------------------------------------------
+// MATHLIB.VPC
+//
+// Project Script
+//-----------------------------------------------------------------------------
+
+$macro SRCDIR ".."
+$Macro OUTLIBDIR "$SRCDIR\lib\public" [!$LINUX]
+
+$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
+
+$Configuration
+{
+ $Compiler
+ {
+ $AdditionalIncludeDirectories "$BASE;..\public\mathlib"
+ $PreprocessorDefinitions "$BASE;MATHLIB_LIB"
+ }
+}
+
+$Project "mathlib"
+{
+ $Folder "Source Files"
+ {
+ $File "color_conversion.cpp"
+ $File "halton.cpp"
+ $File "lightdesc.cpp"
+ $File "mathlib_base.cpp"
+ $File "powsse.cpp"
+ $File "sparse_convolution_noise.cpp"
+ $File "sseconst.cpp"
+ $File "sse.cpp" [$WINDOWS||$POSIX]
+ $File "ssenoise.cpp"
+ $File "3dnow.cpp" [$WINDOWS||$LINUX]
+ $File "anorms.cpp"
+ $File "bumpvects.cpp"
+ $File "IceKey.cpp"
+ $File "imagequant.cpp"
+ $File "polyhedron.cpp"
+ $File "quantize.cpp"
+ $File "randsse.cpp"
+ $File "spherical.cpp"
+ $File "simdvectormatrix.cpp"
+ $File "vector.cpp"
+ $File "vmatrix.cpp"
+ $File "almostequal.cpp"
+ }
+
+
+
+ $Folder "Public Header Files"
+ {
+ $File "$SRCDIR\public\mathlib\amd3dx.h" [$WINDOWS||$LINUX]
+ $File "$SRCDIR\public\mathlib\anorms.h"
+ $File "$SRCDIR\public\mathlib\bumpvects.h"
+ $File "$SRCDIR\public\mathlib\compressed_3d_unitvec.h"
+ $File "$SRCDIR\public\mathlib\compressed_light_cube.h"
+ $File "$SRCDIR\public\mathlib\compressed_vector.h"
+ $File "$SRCDIR\public\mathlib\halton.h"
+ $File "$SRCDIR\public\mathlib\IceKey.H"
+ $File "$SRCDIR\public\mathlib\lightdesc.h"
+ $File "$SRCDIR\public\mathlib\math_pfns.h"
+ $File "$SRCDIR\public\mathlib\mathlib.h"
+ $File "$SRCDIR\public\mathlib\noise.h"
+ $File "$SRCDIR\public\mathlib\polyhedron.h"
+ $File "$SRCDIR\public\mathlib\quantize.h"
+ $File "$SRCDIR\public\mathlib\simdvectormatrix.h"
+ $File "$SRCDIR\public\mathlib\spherical_geometry.h"
+ $File "$SRCDIR\public\mathlib\ssemath.h"
+ $File "$SRCDIR\public\mathlib\ssequaternion.h"
+ $File "$SRCDIR\public\mathlib\vector.h"
+ $File "$SRCDIR\public\mathlib\vector2d.h"
+ $File "$SRCDIR\public\mathlib\vector4d.h"
+ $File "$SRCDIR\public\mathlib\vmatrix.h"
+ $File "$SRCDIR\public\mathlib\vplane.h"
+ }
+
+ $Folder "Header Files"
+ {
+ $File "noisedata.h"
+ $File "sse.h" [$WINDOWS||$POSIX]
+ $File "3dnow.h" [$WINDOWS||$LINUX]
+ }
+}
|