Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix build for Ubuntu/Debian
  • Loading branch information
remcovanmook committed Jun 22, 2018
commit fd7465a1a3e27048ccb6e2b49373215e03b97c61
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -std=gnu99")

include_directories(.)
if(UNIX)
if(APPLE)
find_package(Argp)
if(ARGP_FOUND)
message(STATUS "argp found.")
Expand All @@ -15,7 +15,7 @@ if(UNIX)
else()
set(ARGP_INCLUDE_DIRS "")
set(ARGP_LIBRARIES "")
endif(UNIX)
endif(APPLE)

if(NOT RTRLIB_INCLUDE AND NOT RTRLIB_LIBRARY)
find_package(Rtr)
Expand Down