Remove use of pkg-config: readline already depends on local install.

This commit is contained in:
Danila Fedorin 2018-08-22 00:00:27 -07:00
parent ab4728b2e1
commit 6b8b96511d
1 changed files with 3 additions and 5 deletions

View File

@ -1,12 +1,10 @@
cmake_minimum_required(VERSION 3.1) cmake_minimum_required(VERSION 3.1)
project(abcs) project(abcs)
find_package(PkgConfig REQUIRED)
pkg_check_modules(MPFR REQUIRED mpfr)
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 11)
add_subdirectory(external/libabacus) add_subdirectory(external/libabacus)
add_executable(abcs src/main.cpp src/ref.cpp src/abacus.cpp src/types.cpp src/string_functions.cpp src/util.cpp src/operator_functions.cpp src/trig_functions.cpp src/other_functions.cpp) add_executable(abcs src/main.cpp src/ref.cpp src/abacus.cpp src/types.cpp src/string_functions.cpp src/util.cpp src/operator_functions.cpp src/trig_functions.cpp src/other_functions.cpp)
target_link_libraries(abcs abacus ${MPFR_LIBRARIES} readline) target_link_libraries(abcs abacus mpfr readline)
target_include_directories(abcs PUBLIC include ${MPFR_INCLUDE_DIRS}) target_include_directories(abcs PUBLIC include)
target_compile_options(abcs PUBLIC ${MPFR_CFLAGS_OTHER}) target_compile_options(abcs PUBLIC)