Skip to content

Commit

Permalink
can't redistribute hhc binaries, and it doesn't work like this anyway…
Browse files Browse the repository at this point in the history
…, it has to be installed.
  • Loading branch information
mausch committed Nov 14, 2010
1 parent 69316c7 commit f6b95b2
Show file tree
Hide file tree
Showing 20 changed files with 9 additions and 220 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ CHM_FILE =
# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
# the HTML help compiler on the generated index.hhp.

HHC_LOCATION = hhc.exe
HHC_LOCATION = "c:\Program Files (x86)\HTML Help Workshop\hhc.exe"

# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
# controls if a separate .chi index file is generated (YES) or that
Expand Down
2 changes: 1 addition & 1 deletion Release.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lib\fake.exe build.fsx target=ReleasePackage config=Release
lib\fake.exe build.fsx target=BuildAndRelease config=Release
7 changes: 5 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#load "fake.fsx"

open System
open System.IO
open System.Xml.Linq
open Fake
open Fake.FileUtils
Expand Down Expand Up @@ -115,7 +116,8 @@ Target "ReleasePackage" (fun _ ->
rm_rf outputPath
mkdir outputPath
cp "readme.txt" outputPath
cp docsFile outputPath
if File.Exists docsFile then
cp docsFile outputPath

!+ (buildDir @@ "SolrNet.*")
++ "license.txt" ++ "lib\\Microsoft.Practices.*"
Expand Down Expand Up @@ -184,10 +186,11 @@ Target "PackageSampleApp" (fun _ ->

Target "BuildAll" DoNothing
Target "TestAndRelease" DoNothing
Target "BuildAndRelease" DoNothing

"Test" <== ["BuildAll"]
"BuildAll" <== ["Build";"Merge";"BuildSample"]
"ReleasePackage" <== ["Clean";"Version";"BuildAll";"Docs"]
"BuildAndRelease" <== ["Clean";"Version";"BuildAll";"Docs";"ReleasePackage"]
"TestAndRelease" <== ["Clean";"Version";"Test";"ReleasePackage"]

Run target
Binary file removed tools/doxygen/advpack.dll
Binary file not shown.
Binary file removed tools/doxygen/cnvcnt.dll
Binary file not shown.
Binary file removed tools/doxygen/cnvtoc.dll
Binary file not shown.
Binary file removed tools/doxygen/gencnv.dll
Binary file not shown.
Binary file removed tools/doxygen/hha.dll
Binary file not shown.
Binary file removed tools/doxygen/hhc.exe
Binary file not shown.
216 changes: 0 additions & 216 deletions tools/doxygen/hhc.license.txt

This file was deleted.

Binary file removed tools/doxygen/hhcout.dll
Binary file not shown.
Binary file removed tools/doxygen/hhkout.dll
Binary file not shown.
Binary file removed tools/doxygen/itcc.dll
Binary file not shown.
Binary file removed tools/doxygen/navout.dll
Binary file not shown.
2 changes: 2 additions & 0 deletions tools/doxygen/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
If you want to compile the documentation to CHM, you'll need Microsoft's HTML Help Workshop
You can get it from http://msdn.microsoft.com/en-us/library/ms669985(VS.85).aspx
Binary file removed tools/doxygen/spcom.dll
Binary file not shown.
Binary file removed tools/doxygen/sprbuild.dll
Binary file not shown.
Binary file removed tools/doxygen/spredit.dll
Binary file not shown.
Binary file removed tools/doxygen/sprfile.dll
Binary file not shown.
Binary file removed tools/doxygen/sprlog.dll
Binary file not shown.

0 comments on commit f6b95b2

Please sign in to comment.