1
0
mirror of https://github.com/simon987/ngx_http_js_challenge_module.git synced 2025-04-15 16:36:47 +00:00
2020-03-01 21:05:40 -05:00

22 lines
659 B
CMake

cmake_minimum_required(VERSION 3.7)
project(nginx_js C)
set(CMAKE_C_STANDARD 11)
add_library(nginx_js SHARED library.c)
target_include_directories(
nginx_js
PUBLIC
/home/simon/Downloads/nginx-1.16.1/objs
/home/simon/Downloads/nginx-1.16.1/src
/home/simon/Downloads/nginx-1.16.1/src/core
/home/simon/Downloads/nginx-1.16.1/src/event
/home/simon/Downloads/nginx-1.16.1/src/http
/home/simon/Downloads/nginx-1.16.1/src/http/modules
/home/simon/Downloads/nginx-1.16.1/src/misc
/home/simon/Downloads/nginx-1.16.1/src/os/unix
/home/simon/Downloads/nginx-1.16.1/src/stream
)