libflint/CMakeLists.txt

24 lines
465 B
CMake
Raw Normal View History

2021-02-01 22:06:37 +00:00
cmake_minimum_required(VERSION 3.17)
project(flint C)
2021-12-10 20:41:36 +00:00
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2021-02-01 22:06:37 +00:00
set(CMAKE_C_STANDARD 99)
include_directories(include)
set(SOURCES
src/linkedlist.c
src/set.c
src/stack.c
src/binarytree.c
2021-12-10 20:41:36 +00:00
src/input.c
2021-02-01 22:06:37 +00:00
)
add_library(flint ${SOURCES})
if(${CMAKE_PROJECT_NAME} STREQUAL flint)
add_executable(tests tests/tests.c)
target_include_directories(tests PRIVATE include)
target_link_libraries(tests flint)
endif()