Codebase list massdns / dce01887-ab64-4eda-a2e4-ef29719773d3/main CMakeLists.txt
dce01887-ab64-4eda-a2e4-ef29719773d3/main

Tree @dce01887-ab64-4eda-a2e4-ef29719773d3/main (Download .tar.gz)

CMakeLists.txt @dce01887-ab64-4eda-a2e4-ef29719773d3/mainraw · history · blame

1
2
3
4
5
6
7
8
cmake_minimum_required(VERSION 3.8)
project(massdns)

set(CMAKE_C_STANDARD 11)

set(SOURCE_FILES main.c module.h list.h hashmap.h massdns.h security.h mixed_list.h net.h string.h buffers.h dns.h
        timed_ring.h random.h cmd.h flow.h)
add_executable(massdns ${SOURCE_FILES})