Files
KDDockWidgets/tests/fuzzer/CMakeLists.txt
Sergio Martins 84989745b4 Use target_compile_options instead of the hammer
Doing per target ensures that the python stuff won't get -Werror.
We can now build the python bindings and still use the developer build
2020-06-17 14:37:42 +01:00

11 lines
282 B
CMake

add_executable(fuzzer
main.cpp
Fuzzer.cpp
Operations.cpp
../Testing.cpp)
set_property(TARGET fuzzer PROPERTY CXX_STANDARD 17)
target_link_libraries(fuzzer kddockwidgets Qt5::Widgets Qt5::Test)
set_compiler_flags(fuzzer)