mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
16 lines
193 B
CMake
16 lines
193 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(
|
|
${CURL_INCLUDE_DIRS}
|
|
)
|