File tree 2 files changed +10
-3
lines changed 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ function doit {
16
16
for dir in $dirs ; do
17
17
sources="`(cd $dest/src/$dir; make sources)`"
18
18
for s in $sources ; do
19
+ if [ "$s" = "goto_instrument_main.cpp" ] && [ "$1" != "goto-instrument" ] ; then
20
+ continue
21
+ fi
19
22
echo " <ClCompile Include=\"src\\${dir}\\${s}\"/>" >> $dest/$1.vcxproj
20
23
done
21
24
done
@@ -50,11 +53,11 @@ function doit {
50
53
echo "</Project>" >> $dest/$1.vcxproj.filters
51
54
}
52
55
53
- dirs="big-int langapi util ansi-c assembler cpp java_bytecode xmllang solvers goto-symex analyses pointer-analysis goto-programs linking cbmc"
56
+ dirs="big-int langapi util ansi-c assembler cpp json json-symtab-language xmllang solvers goto-symex analyses pointer-analysis goto-programs linking goto-checker goto-instrument cbmc"
54
57
doit cbmc
55
58
56
- dirs="big-int langapi util ansi-c assembler cpp java_bytecode xmllang solvers goto-symex analyses pointer-analysis goto- programs linking jsil goto-cc"
59
+ dirs="big-int langapi util ansi-c assembler cpp json xmllang goto-programs linking goto-cc"
57
60
doit goto-cc
58
61
59
- dirs="big-int langapi util ansi-c assembler cpp java_bytecode xmllang solvers goto-symex analyses pointer-analysis goto-programs linking goto-instrument"
62
+ dirs="big-int langapi util ansi-c assembler cpp json xmllang solvers goto-symex analyses pointer-analysis goto-programs linking goto-instrument"
60
63
doit goto-instrument
Original file line number Diff line number Diff line change 20
20
<ConfigurationType >Application</ConfigurationType >
21
21
<UseDebugLibraries >true</UseDebugLibraries >
22
22
<CharacterSet >Unicode</CharacterSet >
23
+ <PlatformToolset >v140</PlatformToolset >
23
24
</PropertyGroup >
24
25
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|Win32'" Label =" Configuration" >
25
26
<ConfigurationType >Application</ConfigurationType >
26
27
<UseDebugLibraries >false</UseDebugLibraries >
27
28
<WholeProgramOptimization >true</WholeProgramOptimization >
28
29
<CharacterSet >Unicode</CharacterSet >
30
+ <PlatformToolset >v140</PlatformToolset >
29
31
</PropertyGroup >
30
32
<Import Project =" $(VCTargetsPath)\Microsoft.Cpp.props" />
31
33
<ImportGroup Label =" ExtensionSettings" >
50
52
<Optimization >Disabled</Optimization >
51
53
<PreprocessorDefinitions >WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions);STL_HASH_TR1;HAVE_MINISAT2</PreprocessorDefinitions >
52
54
<AdditionalIncludeDirectories >$(ProjectDir)/src;$(ProjectDir)/minisat-2.2.1</AdditionalIncludeDirectories >
55
+ <ObjectFileName >$(IntDir)/%(RelativeDir)/</ObjectFileName >
53
56
</ClCompile >
54
57
<Link >
55
58
<SubSystem >Console</SubSystem >
65
68
<IntrinsicFunctions >true</IntrinsicFunctions >
66
69
<PreprocessorDefinitions >WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions);STL_HASH_TR1;HAVE_MINISAT2</PreprocessorDefinitions >
67
70
<AdditionalIncludeDirectories >$(ProjectDir)/src;$(ProjectDir)/minisat-2.2.1</AdditionalIncludeDirectories >
71
+ <ObjectFileName >$(IntDir)/%(RelativeDir)/</ObjectFileName >
68
72
</ClCompile >
69
73
<Link >
70
74
<SubSystem >Console</SubSystem >
You can’t perform that action at this time.
0 commit comments