abcs/CMakeLists.txt

11 lines
401 B
CMake
Raw Permalink Normal View History

2018-08-14 01:03:34 -07:00
cmake_minimum_required(VERSION 3.1)
2018-08-18 16:58:36 -07:00
project(abcs)
2018-08-14 01:03:34 -07:00
set(CMAKE_CXX_STANDARD 11)
add_subdirectory(external/libabacus)
2018-09-18 21:00:59 -07:00
add_executable(abcs src/main.cpp src/string_functions.cpp src/ref.cpp src/abacus.cpp src/types.cpp src/util.cpp src/operator_functions.cpp src/trig_functions.cpp src/other_functions.cpp)
2018-09-02 15:42:21 -07:00
2018-09-18 21:00:59 -07:00
target_link_libraries(abcs abacus mpfr readline)
target_include_directories(abcs PUBLIC include)