mirror of https://github.com/axmolengine/axmol.git
14 lines
229 B
CMake
14 lines
229 B
CMake
|
|
||
|
set(lib_name recast)
|
||
|
set(target_name ${lib_name})
|
||
|
|
||
|
project(${lib_name})
|
||
|
|
||
|
file(GLOB ${target_name}_src *.h;*.cpp)
|
||
|
|
||
|
add_library(${target_name} STATIC
|
||
|
${${target_name}_src}
|
||
|
)
|
||
|
|
||
|
target_include_directories(${target_name} PUBLIC ..)
|