您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CMakeLists.txt 333B

123456789101112
  1. include_directories(.)
  2. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
  3. set(SOURCE_FILES
  4. main.cpp
  5. Interface/MainClass.cpp
  6. Interface/MainClass.h
  7. Interface/CommandLineParser.cpp
  8. Interface/CommandLineParser.h
  9. Interface/CommandLineOption.cpp
  10. Interface/CommandLineOption.h
  11. )
  12. add_executable(pdns-slave ${SOURCE_FILES})