11 lines
181 B
CMake
11 lines
181 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(copenai LANGUAGES CXX)
|
|
|
|
add_library(copenai SHARED
|
|
cdllexport.h
|
|
cdllexport.cpp
|
|
../openaiclient.h
|
|
../openaiclient.cpp
|
|
)
|