mirror of https://github.com/axmolengine/axmol.git
11 lines
173 B
CMake
11 lines
173 B
CMake
|
set(lib_name xxhash)
|
||
|
set(target_name ${lib_name})
|
||
|
|
||
|
project(${lib_name})
|
||
|
|
||
|
add_library(${target_name} STATIC
|
||
|
xxhash.c
|
||
|
)
|
||
|
|
||
|
target_include_directories(${target_name} PUBLIC .)
|