From cf961ec5226800cd063d8ab36c06638c83aa0910 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Sat, 18 Aug 2018 16:58:36 -0700 Subject: [PATCH] Rename the project. --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b45a903..fdc4d7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.1) -project(cmdAbacus) +project(abcs) find_package(PkgConfig REQUIRED) pkg_check_modules(MPFR REQUIRED mpfr) set(CMAKE_CXX_STANDARD 11) add_subdirectory(external/libabacus) -add_executable(cmdAbacus 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(cmdAbacus abacus ${MPFR_LIBRARIES} readline) -target_include_directories(cmdAbacus PUBLIC include ${MPFR_INCLUDE_DIRS}) -target_compile_options(cmdAbacus PUBLIC ${MPFR_CFLAGS_OTHER}) +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_include_directories(abcs PUBLIC include ${MPFR_INCLUDE_DIRS}) +target_compile_options(abcs PUBLIC ${MPFR_CFLAGS_OTHER})