summaryrefslogtreecommitdiff
path: root/vstdlib/coroutine_osx.vpc
blob: 030b05a91524f66d17c50b967ec0fdf152b2b792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//-----------------------------------------------------------------------------
//	COROUTINE_OSX.VPC
//
//	Project Script
//-----------------------------------------------------------------------------

$Macro SRCDIR		".."

$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"

$Configuration
{
	$Compiler
	{
		$GCC_ExtraCompilerFlags		"-fno-stack-protector"
		$PreprocessorDefinitions	"$BASE;VSTDLIB_DLL_EXPORT"
	}
}

$Project "coroutine_osx"
{
	$Folder	"Source Files"
	{
		$File	"coroutine.cpp"
	}

	$Folder	"Public Header Files"
	{
		$File	"$SRCDIR\public\vstdlib\coroutine.h"
	}
}