aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 368e6ce6058489df975f5cbebfffb76aadf494ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION 3.17)
project(multihome C)

set(CMAKE_C_STANDARD 99)

include_directories(.)

add_executable(multihome
        multihome.c
        multihome.h)

install(TARGETS multihome
        RUNTIME DESTINATION bin)