Skip to content

Commit

Permalink
Moved shared files to seperate lib project
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Apr 13, 2010
1 parent 2271425 commit bffc097
Show file tree
Hide file tree
Showing 4 changed files with 347 additions and 337 deletions.
168 changes: 0 additions & 168 deletions cli/cppcheck.vcproj
Original file line number Diff line number Diff line change
Expand Up @@ -190,196 +190,28 @@
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath="..\lib\checkautovariables.cpp"
>
</File>
<File
RelativePath="..\lib\checkbufferoverrun.cpp"
>
</File>
<File
RelativePath="..\lib\checkclass.cpp"
>
</File>
<File
RelativePath="..\lib\checkdangerousfunctions.cpp"
>
</File>
<File
RelativePath="..\lib\checkexceptionsafety.cpp"
>
</File>
<File
RelativePath="..\lib\checkheaders.cpp"
>
</File>
<File
RelativePath="..\lib\checkmemoryleak.cpp"
>
</File>
<File
RelativePath="..\lib\checkother.cpp"
>
</File>
<File
RelativePath="..\lib\checkstl.cpp"
>
</File>
<File
RelativePath="..\lib\checkunusedfunctions.cpp"
>
</File>
<File
RelativePath="..\lib\cppcheck.cpp"
>
</File>
<File
RelativePath="cppcheckexecutor.cpp"
>
</File>
<File
RelativePath="..\lib\errorlogger.cpp"
>
</File>
<File
RelativePath="..\lib\executionpath.cpp"
>
</File>
<File
RelativePath="..\lib\filelister.cpp"
>
</File>
<File
RelativePath="..\lib\filelister_win32.cpp"
>
</File>
<File
RelativePath="main.cpp"
>
</File>
<File
RelativePath="..\lib\mathlib.cpp"
>
</File>
<File
RelativePath="..\lib\preprocessor.cpp"
>
</File>
<File
RelativePath="..\lib\settings.cpp"
>
</File>
<File
RelativePath="threadexecutor.cpp"
>
</File>
<File
RelativePath="..\lib\token.cpp"
>
</File>
<File
RelativePath="..\lib\tokenize.cpp"
>
</File>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl;inc;xsd"
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
>
<File
RelativePath="..\lib\check.h"
>
</File>
<File
RelativePath="..\lib\checkautovariables.h"
>
</File>
<File
RelativePath="..\lib\checkbufferoverrun.h"
>
</File>
<File
RelativePath="..\lib\checkclass.h"
>
</File>
<File
RelativePath="..\lib\checkdangerousfunctions.h"
>
</File>
<File
RelativePath="..\lib\checkexceptionsafety.h"
>
</File>
<File
RelativePath="..\lib\checkheaders.h"
>
</File>
<File
RelativePath="..\lib\checkmemoryleak.h"
>
</File>
<File
RelativePath="..\lib\checkother.h"
>
</File>
<File
RelativePath="..\lib\checkstl.h"
>
</File>
<File
RelativePath="..\lib\checkunusedfunctions.h"
>
</File>
<File
RelativePath="..\lib\classinfo.h"
>
</File>
<File
RelativePath="..\lib\cppcheck.h"
>
</File>
<File
RelativePath="..\lib\errorlogger.h"
>
</File>
<File
RelativePath="..\lib\executionpath.h"
>
</File>
<File
RelativePath="..\lib\filelister.h"
>
</File>
<File
RelativePath="..\lib\filelister_win32.h"
>
</File>
<File
RelativePath="..\lib\mathlib.h"
>
</File>
<File
RelativePath="..\lib\preprocessor.h"
>
</File>
<File
RelativePath="resource.h"
>
</File>
<File
RelativePath="..\lib\settings.h"
>
</File>
<File
RelativePath="..\lib\token.h"
>
</File>
<File
RelativePath="..\lib\tokenize.h"
>
</File>
</Filter>
<File
RelativePath="cppcheck.rc"
Expand Down
14 changes: 13 additions & 1 deletion cppcheck.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual C++ Express 2008
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cppcheck", "cli\cppcheck.vcproj", "{7D0D241B-E144-3FAC-ABD3-8D1BBA4B600A}"
ProjectSection(ProjectDependencies) = postProject
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F} = {ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test\test.vcproj", "{BA98E531-D8B3-39CB-8171-064854404B81}"
ProjectSection(ProjectDependencies) = postProject
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F} = {ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lib", "lib\lib.vcproj", "{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -18,6 +26,10 @@ Global
{BA98E531-D8B3-39CB-8171-064854404B81}.Debug|Win32.Build.0 = Debug|Win32
{BA98E531-D8B3-39CB-8171-064854404B81}.Release|Win32.ActiveCfg = Release|Win32
{BA98E531-D8B3-39CB-8171-064854404B81}.Release|Win32.Build.0 = Release|Win32
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}.Debug|Win32.ActiveCfg = Debug|Win32
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}.Debug|Win32.Build.0 = Debug|Win32
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}.Release|Win32.ActiveCfg = Release|Win32
{ACE2ABB0-1027-44DF-8E14-8B4DAF88590F}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading

0 comments on commit bffc097

Please sign in to comment.