diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /video/video_quicktime.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'video/video_quicktime.vpc')
| -rw-r--r-- | video/video_quicktime.vpc | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/video/video_quicktime.vpc b/video/video_quicktime.vpc new file mode 100644 index 0000000..c9f6cd9 --- /dev/null +++ b/video/video_quicktime.vpc @@ -0,0 +1,84 @@ +//----------------------------------------------------------------------------- +// video_quicktime.vpc +// +// Project Script +// Created by: Matt Pritchard +// +// Description: Quicktime video sub-system (for video services system) +// +//----------------------------------------------------------------------------- + +$Macro SRCDIR ".." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc" + +$Configuration +{ + $Compiler + { + // Win32 - need to point to Quicktime 7 for Win SDK directory so that dependant includes will work + $AdditionalIncludeDirectories "$BASE,..\common\quicktime_win32\" [$WIN32] + $AdditionalIncludeDirectories "$BASE;$SRCDIR\dx9sdk\include" [$WIN32] + } + $Linker + { + $IgnoreImportLibrary "Yes" [$WIN32] + $AdditionalDependencies "$BASE vfw32.lib" [$WIN32] + $SystemLibraries "iconv" [$OSXALL] + $SystemFrameworks "Quicktime;Carbon" [$OSXALL] + $AdditionalLibraryDirectories "$BASE;$SRCDIR\dx9sdk\lib" [$WIN32] + } +} + + +$Configuration "Debug" +{ + $General + { + $OutputDirectory "Debug_Video_Quicktime" [$WINDOWS] + $IntermediateDirectory "Debug_Video_Quicktime" [$WINDOWS] + } +} + +$Configuration "Release" +{ + $General + { + $OutputDirectory "Release_Video_Quicktime" [$WINDOWS] + $IntermediateDirectory "Release_Video_Quicktime" [$WINDOWS] + } +} + + +$Project "video_quicktime" +{ + $Folder "Source Files" [$OSXALL||$WIN32] + { + $file "quicktime_video.cpp" + $file "quicktime_material.cpp" + $file "quicktime_recorder.cpp" + } + + $Folder "Header Files" [$OSXALL||$WIN32] + { + $file "videosubsystem.h" + $file "video_macros.h" + $file "quicktime_common.h" + $file "quicktime_video.h" + $file "quicktime_material.h" + $file "quicktime_recorder.h" + $file "$SRCDIR\public\pixelwriter.h" + + } + + $Folder "Link Libraries" + { + $Lib tier2 + $File "$SRCDIR\lib\common\quicktime\QTMLClient.lib" [$WIN32] + $File "$SRCDIR\DX9SDK\lib\dsound.lib" [$WIN32] + $File "$SRCDIR\DX9SDK\lib\dxguid.lib" [$WIN32] + + } +} + |