mirror of
https://bitbucket.org/seefoe/src.git
synced 2026-08-01 02:15:47 -04:00
19 lines
270 B
CMake
19 lines
270 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(webAPI)
|
|
|
|
add_library(webAPI
|
|
webAPI.h
|
|
webAPI.cpp
|
|
json.hpp
|
|
webAPIHeartbeat.h
|
|
webAPIHeartbeat.cpp
|
|
${OPENSSL_INCLUDE_DIR}
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CURL_INCLUDE_DIRS}
|
|
${OPENSSL_INCLUDE_DIR}
|
|
)
|