Skip to content

Commit

Permalink
Fix Ripe.h include
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Jul 20, 2023
1 parent e5bc587 commit b9345fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## [4.2.2] - 20-07-2023
- Updated to remove unused intro
- Updated google test that now requires C++14
- Fix include path for Ripe.h

## [4.2.0] - 02-03-2018
- Added SHA-256 and SHA-512 support
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
include_directories (${CMAKE_BINARY_DIR})
include_directories (${CMAKE_SOURCE_DIR})

include_directories (include/)

include(FindPackageHandleStandardArgs)

# http://www.cmake.org/Wiki/CMake_RPATH_handling#Mac_OS_X_and_the_RPATH
Expand Down
2 changes: 1 addition & 1 deletion lib/Ripe.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

#include <zlib.h>

#include "../include/Ripe.h"
#include <Ripe.h>

#define RIPE_UNUSED(x) (void)x

Expand Down
2 changes: 1 addition & 1 deletion src/ripe.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <fstream>
#include <string>
#include <vector>
#include "../include/Ripe.h"
#include <Ripe.h>

void displayVersion()
{
Expand Down

0 comments on commit b9345fb

Please sign in to comment.