7 lines
195 B
CMake
7 lines
195 B
CMake
|
cmake_minimum_required (VERSION 3.8)
|
||
|
|
||
|
aux_source_directory(. MONGOOSE_SOURCE)
|
||
|
|
||
|
add_library(mongoose ${MONGOOSE_SOURCE})
|
||
|
|
||
|
target_include_directories(mongoose INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|