Skip to content

Commit cce601b

Browse files
committed
Add installer buildfiles
Added installer buildfiles using http://wixtoolset.org. A build "script" (bat file) was added to allow easier building (makeMSI.bat).
1 parent 36580d7 commit cce601b

23 files changed

+873
-33
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
*.tlog
88
*.filters
99
*.user
10-
*.vcxproj
1110
*.log
1211
*.unsuccessfulbuild
1312
*.pdb
@@ -16,3 +15,10 @@
1615
*.opensdf
1716
*.old
1817
*.ipch
18+
*.obj
19+
*.idb
20+
*.lastbuildstate
21+
*.lastbuildstate
22+
*.cache
23+
*.tlh
24+
*.manifest

SPARQL_msi/NewFldrBtn.bmp

318 Bytes
Binary file not shown.

SPARQL_msi/SPARQL.wxs

+780
Large diffs are not rendered by default.

SPARQL_msi/UpFldrBtn.bmp

318 Bytes
Binary file not shown.

SPARQL_msi/banner.bmp

4.97 KB
Binary file not shown.

SPARQL_msi/makeMSI.bat

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
@ECHO OFF
2+
3+
setlocal enabledelayedexpansion
4+
5+
REM Set default mysql dir
6+
set mysql=C:\Program Files (x86)\MySQL\MySQL Server 5.5\lib\libmysql.dll
7+
8+
REM Check if we can find candle.exe on the path
9+
where candle.exe >nul 2>&1
10+
11+
12+
IF EXIST "%mysql%" (
13+
echo FOUND MYSQL
14+
copy "%mysql%" libmysql.dll
15+
) ELSE (
16+
echo DID NOT FIND MYSQL
17+
REM prompt user for mysql dll location
18+
set /P umysql=Enter full libmysql.dll location:
19+
20+
IF NOT EXIST "!umysql!" (
21+
echo Incorrect mysql location "!umysql!" exiting
22+
23+
goto ERROR
24+
) ELSE (
25+
copy "!umysql!" libmysql.dll
26+
)
27+
)
28+
29+
IF NOT ERRORLEVEL 1 (
30+
REM We found candle.exe, assume WiX toolset is installed, build the installer
31+
candle SPARQL.wxs
32+
light SPARQL.wixobj
33+
) ELSE (
34+
REM We could not find candle.exe, quit with exit code 1
35+
echo "Could not find WiX toolset (http://wixtoolset.org/) on path!"
36+
goto ERROR
37+
)
38+
39+
ENDLOCAL
40+
Exit /B 0
41+
42+
:ERROR
43+
ENDLOCAL
44+
Exit /B 1

SWObjects.sln

+1
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,4 @@ Global
106106
HideSolutionNode = FALSE
107107
EndGlobalSection
108108
EndGlobal
109+

lib/TurtleParser.ypp

+4
Original file line numberDiff line numberDiff line change
@@ -567,5 +567,9 @@ void TurtleDriver::parse (std::string turtleStr, RdfDB* db) {
567567

568568
} // namespace w3c_sw
569569

570+
// FIXME: dirty workaround to make sure linking errors do not occur
571+
int TurtleFlexLexer::w3c_swlex() {
572+
return 0;
573+
}
570574
/* END Driver */
571575

win/SPARQL/SPARQL.vcxproj

+8-5
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@
4242
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
45-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
45+
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</LinkIncremental>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;C:\Program Files (x86)\MySQL\MySQL Server 5.5\include;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\local\boost_1_55_0\lib32-msvc-10.0;C:\Users\Jelle\Documents\projecten\maastro\mysql-5.6.17-win32\lib;$(LibraryPath)</LibraryPath>
48+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;C:\Program Files (x86)\MySQL\MySQL Server 5.5\include;$(IncludePath)</IncludePath>
49+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\local\boost_1_55_0\lib32-msvc-10.0;C:\Users\Jelle\Documents\projecten\maastro\mysql-5.6.17-win32\lib;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib;$(LibraryPath)</LibraryPath>
4850
</PropertyGroup>
4951
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5052
<ClCompile>
@@ -77,14 +79,15 @@
7779
<AdditionalIncludeDirectories>..\..\win;..\..\lib;..\..\docs;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
7880
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
7981
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
80-
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
82+
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
8183
<PrecompiledHeader>
8284
</PrecompiledHeader>
8385
<WarningLevel>Level3</WarningLevel>
8486
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
87+
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
8588
</ClCompile>
8689
<Link>
87-
<AdditionalDependencies>libmysql.lib;%(AdditionalDependencies)</AdditionalDependencies>
90+
<AdditionalDependencies>libmysql.lib;Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
8891
<GenerateDebugInformation>true</GenerateDebugInformation>
8992
<SubSystem>Console</SubSystem>
9093
<OptimizeReferences>true</OptimizeReferences>

win/libSWObjects/libSWObjects.vcxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@
4242
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
45-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
46-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
45+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;C:\Program Files (x86)\MySQL\MySQL Server 5.5\include;$(IncludePath)</IncludePath>
46+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\local\boost_1_55_0\lib32-msvc-10.0;C:\Users\Jelle\Documents\projecten\maastro\mysql-5.6.17-win32\lib;$(LibraryPath)</LibraryPath>
47+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;$(IncludePath)</IncludePath>
48+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\Users\Jelle\Documents\GitHub\SWObjects\win;C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\stage\lib;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib;$(LibraryPath)</LibraryPath>
4749
</PropertyGroup>
4850
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4951
<ClCompile>

win/libboost-log/libboost-log.vcxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
45-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
45+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost_1_44_0;$(IncludePath)</IncludePath>
4646
</PropertyGroup>
4747
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4848
<ClCompile>

win/test_Algebra/test_Algebra.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_BackChain/test_BackChain.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_DAWG/test_DAWG.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_GraphMatch/test_GraphMatch.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_QueryMap/test_QueryMap.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_RDFaParser/test_RDFaParser.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_RdfXmlParser/test_RdfXmlParser.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_SPARQL11/test_SPARQL11.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_SPARQLSerializer/test_SPARQLSerializer.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_SPARUL/test_SPARUL.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_WEBagents/test_WEBagents.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

win/test_logging/test_logging.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
4444
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
4545
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
46-
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IncludePath)</IncludePath>
47-
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LibraryPath)</LibraryPath>
46+
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0;C:\Users\Jelle\Documents\GitHub\SWObjects\utf8_v2.3.2_source;$(IncludePath)</IncludePath>
47+
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Users\Jelle\Documents\projecten\maastro\boost\boost_1_55_0\lib;C:\Program Files -%28x86%29\MySQL\MySQL Server 5.5\lib;$(LibraryPath)</LibraryPath>
4848
</PropertyGroup>
4949
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5050
<ClCompile>

0 commit comments

Comments
 (0)