5aa8e03d7e
FossilOrigin-Name: e475a61cebad409e48b8fb9a04a5624e01a966ed52a6defc3d473c9258778c40
14 lines
295 B
CMake
14 lines
295 B
CMake
# Get CFLAGS
|
|
set(MASTODONT_FOUND)
|
|
set(MASTODONT_VERSION 0.1)
|
|
|
|
# Get parent directory of this config file
|
|
find_package(CURL REQUIRED)
|
|
|
|
set(MASTODONT_INCLUDE_DIRS
|
|
"${CMAKE_CURRENT_LIST_DIR}/../include"
|
|
"${CMAKE_CURRENT_LIST_DIR}/../libs"
|
|
)
|
|
set(MASTODONT_LIBRARIES ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
|