CMake: Keep empty adv library for backwards compatibility

This commit is contained in:
Maarten Bent 2018-09-04 11:18:03 +02:00
parent e685ae1d13
commit ed704caede
2 changed files with 15 additions and 1 deletions

View File

@ -43,7 +43,7 @@ add_opt_lib(net wxUSE_SOCKETS)
# Define UI libraries
if(wxUSE_GUI)
list(APPEND LIBS core)
list(APPEND LIBS core adv)
foreach(lib
aui
html

View File

@ -0,0 +1,14 @@
#############################################################################
# Name: build/cmake/lib/adv/CMakeLists.txt
# Purpose: CMake file for adv library
# Author: Tobias Taschner
# Created: 2016-10-03
# Copyright: (c) 2016 wxWidgets development team
# Licence: wxWindows licence
#############################################################################
include(../../source_groups.cmake)
wx_add_library(adv "${wxSOURCE_DIR}/src/common/dummy.cpp")
wx_finalize_lib(adv)