mirror of https://github.com/axmolengine/axmol.git
12 lines
184 B
CMake
12 lines
184 B
CMake
|
|
||
|
set(lib_name ConvertUTF)
|
||
|
set(target_name ${lib_name})
|
||
|
|
||
|
project(${lib_name})
|
||
|
|
||
|
add_library(${target_name} STATIC
|
||
|
ConvertUTF.cpp
|
||
|
)
|
||
|
|
||
|
target_include_directories(${target_name} PUBLIC .)
|