Commit a540312b authored by jan.koester's avatar jan.koester
Browse files

test

parent 0b93b9f0
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -5,10 +5,6 @@ enable_testing ()
set(LIBV "1.0.0")
set(Upstream_VERSION 1.0.0)

if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
    set(CMAKE_INSTALL_PREFIX "c:/Program Files")
endif()

if(NOT ${CMAKE_CXX_COMPILER} MATCHES "MSVC")
set(CMAKE_CXX_FLAGS "-fPIC -Wall")
endif()
+1 −1
Original line number Diff line number Diff line
@@ -3,5 +3,5 @@ include(CMakeFindDependencyMacro)
include(${CMAKE_CURRENT_LIST_DIR}/libhtmlppTargets.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/libhtmlppConfigVersion.cmake)

set(HTMLPP_INCLUDE_DIR   ${CMAKE_CURRENT_LIST_DIR}../../../include)
set(HTMLPP_INCLUDE_DIR   "${CMAKE_CURRENT_LIST_DIR}../../../include")
set(HTMLPP_CONFIG_DIR    "${CMAKE_CURRENT_LIST_DIR}")
+1 −2
Original line number Diff line number Diff line
@@ -1232,8 +1232,7 @@ void libhtmlpp::HtmlPage::loadFile(libhtmlpp::HtmlElement &html,const char* path
        throw excp[HTMLException::Critical] << e.what();
    }

    while (fs.good()) {
        fs.read(tmp,HTML_BLOCKSIZE);
    while (fs.read(tmp, HTML_BLOCKSIZE)) {
        data.append(tmp,fs.gcount());
    }
    fs.close();
+1 −1

File changed.

Contains only whitespace changes.