Files
Tart/source/CMakeLists.txt

7 lines
175 B
CMake
Raw Normal View History

2025-01-25 08:29:43 -08:00
project(TartLib VERSION 0.1)
set(Lib_SOURCES
tart.c
2025-01-25 08:29:43 -08:00
)
add_library(${PROJECT_NAME} STATIC tart.c)
2025-01-25 12:57:45 -08:00
target_include_directories(${PROJECT_NAME} BEFORE PUBLIC "../includes/")