hotwire/CMakeLists.txt
2025-02-21 18:07:28 -05:00

11 lines
228 B
CMake

cmake_minimum_required(VERSION 3.14..3.31 FATAL_ERROR)
project(Hotwire
VERSION 1
LANGUAGES C)
add_library(hotwire src/dlopen.c)
add_library(hotwire::Hotwire ALIAS hotwire)
target_include_directories(hotwire PUBLIC include)