mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-13 21:01:08 -04:00
17 lines
222 B
CMake
17 lines
222 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
|
|
${CURL_LIBRARIES}
|
|
)
|
|
|
|
include_directories(
|
|
${CURL_INCLUDE_DIRS}
|
|
)
|