f256/examples/pgztest/CMakeLists.txt
2023-12-31 17:00:25 -06:00

24 lines
432 B
CMake

# This is only to make my IDE happy.
# We can't actually build with it until I get llvm-mos integrated into
# toolchains. -- SCD
cmake_minimum_required(VERSION 3.22)
set(CMAKE_C_STANDARD 17)
project(pgztest)
set(PGZTEST_SOURCE
api.h
f256.h
f256.c
pgztest.c
)
add_executable(${CMAKE_PROJECT_NAME}
${PGZTEST_SOURCE}
)
target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC
.
../../../f256/include
)