mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-03 17:56:17 -04:00
Add CMakeLists.txt
This commit is contained in:
parent
3cc3608e9c
commit
e201c080dd
12
CMakeLists.txt
Normal file
12
CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
||||
cmake_minimum_required (VERSION 3.13)
|
||||
project (libdeflate)
|
||||
|
||||
file(GLOB_RECURSE SOURCE
|
||||
"common/**/*.c"
|
||||
"common/**/*.h"
|
||||
"lib/*.c"
|
||||
"lib/*.h"
|
||||
)
|
||||
|
||||
add_library(libdeflate libdeflate.h ${SOURCE})
|
||||
target_include_directories(libdeflate PUBLIC "${CMAKE_PROJECT_DIR}")
|
Loading…
x
Reference in New Issue
Block a user