aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 54a43f5f46449111624fe817f1f7f114edfab862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.28)
project(asdfapi C)

set(CMAKE_C_STANDARD 99)

link_libraries(dl)
add_subdirectory(extensions)
add_executable(asdfapi main.c
        ext_internal.c
        ext_internal.h
)