mirror of https://github.com/axmolengine/axmol.git
15 lines
526 B
CMake
15 lines
526 B
CMake
set(target_name GUI)
|
|
|
|
FILE(GLOB GUI_CONTROL_SOURCES CCControlExtension/*.h;CCControlExtension/*.cpp)
|
|
FILE(GLOB GUI_SCROLLVIEW_SOURCES CCScrollView/*.h;CCScrollView/*.cpp)
|
|
|
|
SOURCE_GROUP("CCControlExtension" FILES ${GUI_CONTROL_SOURCES})
|
|
SOURCE_GROUP("CCScrollView" FILES ${GUI_SCROLLVIEW_SOURCES})
|
|
|
|
add_library(${target_name}
|
|
${GUI_CONTROL_SOURCES}
|
|
${GUI_SCROLLVIEW_SOURCES})
|
|
|
|
target_include_directories(${target_name} INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
setup_cocos_extension_config(${target_name}) |