add GuiLite demo

This commit is contained in:
morixinguan
2021-01-30 21:40:08 +08:00
parent ef40188288
commit 81ac365308
56 changed files with 17444 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 2.8)
PROJECT(UIcode)
SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR})
FILE(GLOB SOURCE *.cpp)
FILE(GLOB RESOURCE resource/*.cpp)
ADD_LIBRARY(UIcode ${SOURCE}
${RESOURCE})
execute_process(
COMMAND ${CMAKE_SOURCE_DIR}/.sync_build.sh HelloStar
)