mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
16 lines
203 B
CMake
16 lines
203 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(webAPI)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_library(webAPI
|
|
webAPI.h
|
|
webAPI.cpp
|
|
json.hpp
|
|
)
|
|
|
|
include_directories(
|
|
${CURL_INCLUDE_DIRS}
|
|
)
|