diff options
author | Albert <albert.tests@gmail.com> | 2013-10-28 19:35:04 (GMT) |
---|---|---|
committer | Albert <albert.tests@gmail.com> | 2013-10-28 19:35:04 (GMT) |
commit | a338afc8f3e358f10eeef8367ef868110450fef5 (patch) | |
tree | 1d7d174e95f8f7e864294f17f4a3d509e6cbc69e /winbuild/doxyindexer.vcproj | |
parent | f43b013e2b554b089c7350b32238043acbe0abdf (diff) | |
download | Doxygen-a338afc8f3e358f10eeef8367ef868110450fef5.zip Doxygen-a338afc8f3e358f10eeef8367ef868110450fef5.tar.gz Doxygen-a338afc8f3e358f10eeef8367ef868110450fef5.tar.bz2 |
Another update for the build system
- .gitignore
src/unistd.h is not on src directory anymore (windows version is on winbuild directory)
- doxywizard.pro.in
consistency 0bj -> ../../objects
- Doxygen.sln
build doxygen 64 bit debug too
- Doxygen.vcproj
Config was missing (cannot be automatic due to the fact that there are 2 rules in 1 file), see also Doxywizard.vcproj
- Doxywizard.vcproj
consistency in respect to directories
$(QTDIR)/mkspecs/msvc2005 -> $(QTDIR)/mkspecs/msvc2008
settings part was present for x64 but not for Win32 (x64 not necessary for doxywizard)
Config_dw was missing (cannot be automatic due to the fact that there are 2 rules in 1 file), see also Doxygen.vcproj
- Version.rules
version.py does not need any arguments
- doxyindexer.vcproj
consistency in respect to directories
- doxysearch.vcproj
consistency in respect to directories
Diffstat (limited to 'winbuild/doxyindexer.vcproj')
-rw-r--r-- | winbuild/doxyindexer.vcproj | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/winbuild/doxyindexer.vcproj b/winbuild/doxyindexer.vcproj index f15055b..c54b118 100644 --- a/winbuild/doxyindexer.vcproj +++ b/winbuild/doxyindexer.vcproj @@ -21,8 +21,8 @@ <Configurations>
<Configuration
Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)"
+ OutputDirectory="..\bin\Debug"
+ IntermediateDirectory=".\Debug"
ConfigurationType="1"
CharacterSet="1"
BuildLogFile="$(IntDir)\$(TargetName)BuildLog.htm"
@@ -102,8 +102,8 @@ </Configuration>
<Configuration
Name="Debug|x64"
- OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"
- IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
+ OutputDirectory="..\bin\Debug64"
+ IntermediateDirectory=".\Debug64"
ConfigurationType="1"
CharacterSet="1"
BuildLogFile="$(IntDir)\$(TargetName)BuildLog.htm"
@@ -181,8 +181,8 @@ </Configuration>
<Configuration
Name="Release|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)"
+ OutputDirectory="..\bin\Relase"
+ IntermediateDirectory=".\Release"
ConfigurationType="1"
CharacterSet="1"
BuildLogFile="$(IntDir)\$(TargetName)BuildLog.htm"
@@ -263,8 +263,8 @@ </Configuration>
<Configuration
Name="Release|x64"
- OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"
- IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
+ OutputDirectory="..\bin\Relase64"
+ IntermediateDirectory=".\Release64"
ConfigurationType="1"
CharacterSet="1"
BuildLogFile="$(IntDir)\$(TargetName)BuildLog.htm"
|