1 Star 0 Fork 1.2K

Bull / GuiLite

forked from idea4good / GuiLite 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 650 Bytes
一键复制 编辑 Web IDE 原始数据 按行查看 历史
idea4good 提交于 2019-05-24 10:20 . !19 Refactor wnd, add HelloWidgets
cmake_minimum_required(VERSION 2.8)
PROJECT(GuiLite)
SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR})
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR})
# core
FILE(GLOB CORE_SRC core/*.cpp)
FILE(GLOB CORE_ADAPTER core/adapter/api_linux.cpp
core/adapter/audio_linux.cpp
core/adapter/msg_linux.cpp)
# gui
FILE(GLOB WIDGETS_SRC widgets/*.cpp)
# build static library
ADD_LIBRARY(GuiLite STATIC ${CORE_SRC} ${CORE_ADAPTER} ${WIDGETS_SRC})
# build shared library
# ADD_LIBRARY(GuiLite SHARED ${CORE_SRC} ${CORE_ADAPTER} ${WIDGETS_SRC})
execute_process(COMMAND ${CMAKE_SOURCE_DIR}/.sync.sh GuiLite)
C++
1
https://gitee.com/skybillow/GuiLite.git
git@gitee.com:skybillow/GuiLite.git
skybillow
GuiLite
GuiLite
master

搜索帮助