Files
Tart/source/CMakeLists.txt

10 lines
218 B
CMake
Raw Normal View History

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