summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 4d0c1c37720e1bacdd051c7cb3b6156b54d8c51d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cmake_minimum_required (VERSION 2.8)

include (utils.cmake)

disallow_intree_builds()

project (utf8proc C)

add_definitions (
  -DUTF8PROC_EXPORTS
)

if (NOT MSVC)
  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall")
endif ()

add_library (utf8proc
  utf8proc.c
  utf8proc.h
)

set_property (TARGET utf8proc PROPERTY POSITION_INDEPENDENT_CODE ON)