Skip to content

Commit

Permalink
fixed compile error, set up gitignore files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsharpoblunto committed Jul 25, 2012
1 parent 71a3cad commit 1f569d6
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

*.suo
*.sdf
*.opensdf
/TestApplication/Release
/TestApplication/Debug
/Release
/ipch
/Debug
/LHP/msvc/Release
/LHP/msvc/Debug
/lua-5.1.1/msvc/lua/Debug
/lua-5.1.1/msvc/lua/Release
/luabind-0.7/msvc/luabind/Debug
/luabind-0.7/msvc/luabind/Release
2 changes: 2 additions & 0 deletions LHP/msvc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.user
1 change: 1 addition & 0 deletions LHP/msvc/LHP.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<ClCompile Include="..\src\ApplicationController.cpp" />
<ClCompile Include="..\src\Connection.cpp" />
<ClCompile Include="..\src\ControllerContext.cpp" />
<ClCompile Include="..\src\HtmlForm.cpp" />
<ClCompile Include="..\src\HttpServer.cpp" />
<ClCompile Include="..\src\IController.cpp" />
<ClCompile Include="..\src\json.cpp" />
Expand Down
3 changes: 3 additions & 0 deletions LHP/msvc/LHP.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,8 @@
<ClCompile Include="..\src\HttpServer.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\src\HtmlForm.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>
2 changes: 2 additions & 0 deletions TestApplication/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.user
1 change: 0 additions & 1 deletion TestApplication/TestController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

void TestController::Register(LHP::ApplicationController &controller)
{
controller.RegisterDefaultControllerGetAction("Test","Index");
controller.RegisterControllerGetAction("Test","Index",&TestController::Index);
controller.RegisterControllerFormPostAction("Test","Submit",&TestController::Submit);
}
Expand Down
2 changes: 2 additions & 0 deletions lua-5.1.1/msvc/lua/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.user
2 changes: 2 additions & 0 deletions luabind-0.7/msvc/luabind/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.user

0 comments on commit 1f569d6

Please sign in to comment.