Skip to content

Commit

Permalink
Remove references to special HTMLHELP directory.
Browse files Browse the repository at this point in the history
In Mingw64 build we put the Html Help Workshop files in the
appropriate mingw directories.
  • Loading branch information
jralls committed Aug 31, 2017
1 parent d02ce3a commit e798d6b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CMakeLists.txt
Expand Up @@ -85,7 +85,6 @@ SET(GNC_DBD_DIR ${CMAKE_PREFIX_PATH}/lib/dbd CACHE PATH "specify location of lib
SET(PKGLIBDIR ${CMAKE_INSTALL_PREFIX}/lib/gnucash)
SET(TEST_MYSQL_URL "" CACHE STRING "MySQL database URL for testing")
SET(TEST_PGSQL_URL "" CACHE STRING "PgSQL database URL for testing")
SET(HTMLHELP_DIR ${CMAKE_PREFIX_PATH}/hh CACHE PATH "Specify location of Win32 HTMLHELP library")

SET(DATADIR_BUILD ${CMAKE_BINARY_DIR}/${DATADIRNAME})
SET(LIBDIR_BUILD ${CMAKE_BINARY_DIR}/lib)
Expand Down Expand Up @@ -236,9 +235,9 @@ FIND_PATH (REGEX_INCLUDE_PATH NAMES regex.h
PATHS /usr/include /opt/gnome/include)
FIND_LIBRARY (REGEX_LIBRARY NAMES regex)
IF (WIN32)
message(STATUS "Looking for htmlhelp.h and htmlhelp.a in ${HTMLHELP_DIR}")
FIND_PATH (HTMLHELP_INCLUDE_PATH NAMES htmlhelp.h HINTS ${HTMLHELP_DIR}/include)
FIND_LIBRARY (HTMLHELP_LIBRARY htmlhelp HINTS ${HTMLHELP_DIR}/lib)
message(STATUS "Looking for htmlhelp.h and htmlhelp.a")
FIND_PATH (HTMLHELP_INCLUDE_PATH NAMES htmlhelp.h)
FIND_LIBRARY (HTMLHELP_LIBRARY htmlhelp)
ENDIF (WIN32)

# ############################################################
Expand Down

0 comments on commit e798d6b

Please sign in to comment.