mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-01 01:16:03 -04:00
18 lines
246 B
CMake
18 lines
246 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(webAPI)
|
|
|
|
add_library(webAPI
|
|
webAPI.h
|
|
webAPI.cpp
|
|
json.hpp
|
|
webAPIHeartbeat.h
|
|
webAPIHeartbeat.cpp
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CURL_INCLUDE_DIRS}
|
|
${OPENSSL_INCLUDE_DIR}
|
|
)
|