From 1750ade558d75faf87f4c266af38f83e1aa2e1d3 Mon Sep 17 00:00:00 2001 From: simon987 Date: Mon, 2 Mar 2020 15:57:05 -0500 Subject: [PATCH] cleanup --- CMakeLists.txt | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index ee94831..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,21 +0,0 @@ -cmake_minimum_required(VERSION 3.7) -project(nginx_js C) - -set(CMAKE_C_STANDARD 11) - - -add_library(nginx_js SHARED ngx_http_js_challenge.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 -)