You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 188B

12345678910
  1. cmake_minimum_required(VERSION 3.9)
  2. project(qdnsagg)
  3. add_executable(qdnsagg
  4. main.cpp
  5. )
  6. add_subdirectory(modules/dns)
  7. target_link_libraries(qdnsagg Qt5::Core qdnsagg-dns)