da2b8ea812
Add CMake build system for libraries, tests and samples update_files.py converts build/files into CMake format. build/update-setup-h has been modified to update build/cmake/setup.h.in.
17 lines
536 B
CMake
17 lines
536 B
CMake
#############################################################################
|
|
# Name: build/cmake/lib/ribbon/CMakeLists.txt
|
|
# Purpose: CMake file for ribbon library
|
|
# Author: Tobias Taschner
|
|
# Created: 2016-10-04
|
|
# Copyright: (c) 2016 wxWidgets development team
|
|
# Licence: wxWindows licence
|
|
#############################################################################
|
|
|
|
include(../../source_groups.cmake)
|
|
|
|
wx_append_sources(RIBBON_FILES RIBBON)
|
|
|
|
wx_add_library(ribbon ${RIBBON_FILES})
|
|
|
|
wx_finalize_lib(ribbon)
|