7 lines
175 B
CMake
7 lines
175 B
CMake
project(TartLib VERSION 0.1)
|
|
set(Lib_SOURCES
|
|
tart.c
|
|
)
|
|
add_library(${PROJECT_NAME} STATIC tart.c)
|
|
target_include_directories(${PROJECT_NAME} BEFORE PUBLIC "../includes/")
|