CMake: add missing test files
Add the source files present in the bkl but not CMakeLists.txt to the latter one too. Also link with AUI library now that a test file using it is included. Closes https://github.com/wxWidgets/wxWidgets/pull/2064
This commit is contained in:
committed by
Vadim Zeitlin
parent
d9deaa8b76
commit
56521ad8af
@@ -22,9 +22,11 @@ set(TEST_GUI_SRC
|
|||||||
graphics/affinematrix.cpp
|
graphics/affinematrix.cpp
|
||||||
graphics/boundingbox.cpp
|
graphics/boundingbox.cpp
|
||||||
graphics/clippingbox.cpp
|
graphics/clippingbox.cpp
|
||||||
|
graphics/coords.cpp
|
||||||
graphics/graphmatrix.cpp
|
graphics/graphmatrix.cpp
|
||||||
graphics/graphpath.cpp
|
graphics/graphpath.cpp
|
||||||
config/config.cpp
|
config/config.cpp
|
||||||
|
controls/auitest.cpp
|
||||||
controls/bitmapcomboboxtest.cpp
|
controls/bitmapcomboboxtest.cpp
|
||||||
controls/bitmaptogglebuttontest.cpp
|
controls/bitmaptogglebuttontest.cpp
|
||||||
controls/bookctrlbasetest.cpp
|
controls/bookctrlbasetest.cpp
|
||||||
@@ -102,11 +104,13 @@ set(TEST_GUI_SRC
|
|||||||
net/socket.cpp
|
net/socket.cpp
|
||||||
persistence/tlw.cpp
|
persistence/tlw.cpp
|
||||||
persistence/dataview.cpp
|
persistence/dataview.cpp
|
||||||
|
rowheightcache/rowheightcachetest.cpp
|
||||||
sizers/boxsizer.cpp
|
sizers/boxsizer.cpp
|
||||||
sizers/gridsizer.cpp
|
sizers/gridsizer.cpp
|
||||||
sizers/wrapsizer.cpp
|
sizers/wrapsizer.cpp
|
||||||
toplevel/toplevel.cpp
|
toplevel/toplevel.cpp
|
||||||
validators/valnum.cpp
|
validators/valnum.cpp
|
||||||
|
validators/valtext.cpp
|
||||||
window/clientsize.cpp
|
window/clientsize.cpp
|
||||||
window/setsize.cpp
|
window/setsize.cpp
|
||||||
xml/xrctest.cpp
|
xml/xrctest.cpp
|
||||||
@@ -169,6 +173,9 @@ wx_add_test(test_gui ${TEST_GUI_SRC}
|
|||||||
RES ../samples/sample.rc
|
RES ../samples/sample.rc
|
||||||
)
|
)
|
||||||
wx_exe_link_libraries(test_gui wxcore)
|
wx_exe_link_libraries(test_gui wxcore)
|
||||||
|
if(wxUSE_AUI)
|
||||||
|
wx_exe_link_libraries(test_gui wxaui)
|
||||||
|
endif()
|
||||||
if(wxUSE_RICHTEXT)
|
if(wxUSE_RICHTEXT)
|
||||||
wx_exe_link_libraries(test_gui wxrichtext)
|
wx_exe_link_libraries(test_gui wxrichtext)
|
||||||
endif()
|
endif()
|
||||||
|
Reference in New Issue
Block a user