mirror of
https://github.com/simon987/pg_asciifold.git
synced 2025-04-04 07:12:59 +00:00
16 lines
319 B
CMake
16 lines
319 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(asciifolding C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
find_package(PostgreSQL REQUIRED)
|
|
|
|
include_directories(${PostgreSQL_INCLUDE_DIRS})
|
|
|
|
add_library(asciifolding SHARED asciifolding.c)
|
|
target_compile_options(
|
|
asciifolding
|
|
PRIVATE
|
|
-Ofast
|
|
-march=native
|
|
) |