|
|
@ -315,14 +315,12 @@ sub mkvcbuild |
|
|
|
my $pgtypes = $solution->AddProject( |
|
|
|
my $pgtypes = $solution->AddProject( |
|
|
|
'libpgtypes', 'dll', |
|
|
|
'libpgtypes', 'dll', |
|
|
|
'interfaces', 'src/interfaces/ecpg/pgtypeslib'); |
|
|
|
'interfaces', 'src/interfaces/ecpg/pgtypeslib'); |
|
|
|
$pgtypes->AddDefine('FRONTEND'); |
|
|
|
|
|
|
|
$pgtypes->AddReference($libpgcommon, $libpgport); |
|
|
|
$pgtypes->AddReference($libpgcommon, $libpgport); |
|
|
|
$pgtypes->UseDef('src/interfaces/ecpg/pgtypeslib/pgtypeslib.def'); |
|
|
|
$pgtypes->UseDef('src/interfaces/ecpg/pgtypeslib/pgtypeslib.def'); |
|
|
|
$pgtypes->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
$pgtypes->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
|
|
|
|
|
|
|
|
my $libecpg = $solution->AddProject('libecpg', 'dll', 'interfaces', |
|
|
|
my $libecpg = $solution->AddProject('libecpg', 'dll', 'interfaces', |
|
|
|
'src/interfaces/ecpg/ecpglib'); |
|
|
|
'src/interfaces/ecpg/ecpglib'); |
|
|
|
$libecpg->AddDefine('FRONTEND'); |
|
|
|
|
|
|
|
$libecpg->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
$libecpg->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
$libecpg->AddIncludeDir('src/interfaces/libpq'); |
|
|
|
$libecpg->AddIncludeDir('src/interfaces/libpq'); |
|
|
|
$libecpg->AddIncludeDir('src/port'); |
|
|
|
$libecpg->AddIncludeDir('src/port'); |
|
|
@ -333,7 +331,6 @@ sub mkvcbuild |
|
|
|
my $libecpgcompat = $solution->AddProject( |
|
|
|
my $libecpgcompat = $solution->AddProject( |
|
|
|
'libecpg_compat', 'dll', |
|
|
|
'libecpg_compat', 'dll', |
|
|
|
'interfaces', 'src/interfaces/ecpg/compatlib'); |
|
|
|
'interfaces', 'src/interfaces/ecpg/compatlib'); |
|
|
|
$libecpgcompat->AddDefine('FRONTEND'); |
|
|
|
|
|
|
|
$libecpgcompat->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
$libecpgcompat->AddIncludeDir('src/interfaces/ecpg/include'); |
|
|
|
$libecpgcompat->AddIncludeDir('src/interfaces/libpq'); |
|
|
|
$libecpgcompat->AddIncludeDir('src/interfaces/libpq'); |
|
|
|
$libecpgcompat->UseDef('src/interfaces/ecpg/compatlib/compatlib.def'); |
|
|
|
$libecpgcompat->UseDef('src/interfaces/ecpg/compatlib/compatlib.def'); |
|
|
|