mirror of
https://github.com/brunodev85/winlator.git
synced 2024-11-30 08:30:30 +00:00
11 lines
308 B
CMake
11 lines
308 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(AndroidSysVSHM C)
|
|
message("Building ${PROJECT_NAME}")
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -std=gnu99 -shared -fPIC")
|
|
|
|
MESSAGE(STATUS "Compiler options: ${CMAKE_C_FLAGS}")
|
|
|
|
add_library(android-sysvshm SHARED android_sysvshm.c) |