24 lines
596 B
CMake
24 lines
596 B
CMake
project(TartLib VERSION 0.1)
|
|
set( CMAKE_STATIC_LIBRARY_PREFIX "")
|
|
set( CMAKE_C_STANDARD 11)
|
|
set( CMAKE_C_STANDARD_REQUIRED ON)
|
|
|
|
|
|
set(LIB_SOURCES
|
|
term.c
|
|
term.h
|
|
tart.c
|
|
)
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${LIB_SOURCES})
|
|
|
|
target_include_directories(${PROJECT_NAME} BEFORE PUBLIC "../includes/")
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "_LINUX")
|
|
endif()
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "_WIN32")
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "_WIN64")
|
|
endif()
|