mirror of
https://bitbucket.org/seefoe/src.git
synced 2026-01-16 23:04:30 -05: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}
|
|
)
|