This repository has been archived on 2024-02-29. You can view files and clone it, but cannot push or open issues or pull requests.
common-math/CMakeLists.txt

7 lines
122 B
CMake

cmake_minimum_required(VERSION 3.25)
project(common_math C)
set(CMAKE_C_STANDARD 11)
add_library(common_math library.c)