mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-01-15 17:02:52 +08:00
13 lines
195 B
CMake
13 lines
195 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
PROJECT(Gui)
|
|
|
|
INCLUDE_DIRECTORIES(core_include
|
|
gui_include)
|
|
|
|
FILE(GLOB SRC src/*.cpp)
|
|
|
|
ADD_LIBRARY(gui ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(gui core sample)
|