Skip to content

Commit 7ecdbfe

Browse files
Added ignore
1 parent f13a765 commit 7ecdbfe

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
$ cat .gitignore
2+
3+
# Ignore these patterns
4+
desktop.ini
5+
~AutoRecover*.*
6+
*.aps
7+
*.exe
8+
*.idb
9+
*.ipch
10+
*.lib
11+
*.log
12+
*.manifest
13+
*.obj
14+
*.pch
15+
*.pdb
16+
*.sdf
17+
*.suo
18+
*.tlog
19+
*.user
20+
*.7z
21+
*.swp
22+
/boost
23+
/scintilla
24+
/bin

SQLiteClassBuilder.vcxproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,23 @@
7676
<PropertyGroup Label="UserMacros" />
7777
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
7878
<LinkIncremental>true</LinkIncremental>
79+
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
80+
<IntDir>$(ProjectDir)bin\Intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
7981
</PropertyGroup>
8082
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
8183
<LinkIncremental>true</LinkIncremental>
84+
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
85+
<IntDir>$(ProjectDir)bin\Intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
8286
</PropertyGroup>
8387
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
8488
<LinkIncremental>false</LinkIncremental>
89+
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
90+
<IntDir>$(ProjectDir)bin\Intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
8591
</PropertyGroup>
8692
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8793
<LinkIncremental>false</LinkIncremental>
94+
<OutDir>$(ProjectDir)bin\$(Platform)\$(Configuration)\</OutDir>
95+
<IntDir>$(ProjectDir)bin\Intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
8896
</PropertyGroup>
8997
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
9098
<ClCompile>
@@ -127,6 +135,7 @@
127135
<SDLCheck>true</SDLCheck>
128136
<PreprocessorDefinitions>EXCLUDE_BOOST_CODE;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
129137
<ConformanceMode>true</ConformanceMode>
138+
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
130139
</ClCompile>
131140
<Link>
132141
<SubSystem>Console</SubSystem>
@@ -146,6 +155,7 @@
146155
<SDLCheck>true</SDLCheck>
147156
<PreprocessorDefinitions>EXCLUDE_BOOST_CODE;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
148157
<ConformanceMode>true</ConformanceMode>
158+
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
149159
</ClCompile>
150160
<Link>
151161
<SubSystem>Console</SubSystem>

0 commit comments

Comments
 (0)