CMake: Find more external libraries

Check for LibNotify, MSpack, XTest and GnomeVFS2.
This commit is contained in:
Maarten Bent
2018-12-11 20:49:14 +01:00
parent 79344fc5b6
commit 14570b4fa3
8 changed files with 304 additions and 2 deletions

View File

@@ -11,10 +11,15 @@ include(../../source_groups.cmake)
wx_append_sources(HTML_FILES HTML_CMN)
if(WIN32)
if(WIN32 OR wxUSE_LIBMSPACK)
wx_append_sources(HTML_FILES HTML_MSW)
endif()
wx_add_library(html ${HTML_FILES})
if(wxUSE_LIBMSPACK)
wx_lib_include_directories(html PRIVATE ${MSPACK_INCLUDE_DIRS})
wx_lib_link_libraries(html PRIVATE ${MSPACK_LIBRARIES})
endif()
wx_finalize_lib(html)