13 lines
353 B
CMake
13 lines
353 B
CMake
# Copyright (C) 2021,2022 fef <owo@fef.moe>. All rights reserved.
|
|
|
|
add_library(c)
|
|
target_include_directories(c PRIVATE ${GAY_INCLUDE_DIRS})
|
|
target_compile_definitions(c PRIVATE
|
|
${GAY_DEFINITIONS}
|
|
__BSD_VISIBLE=1
|
|
_POSIX_C_SOURCE=201709L
|
|
)
|
|
|
|
target_include_directories(c PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
|
|
|
add_subdirectory(string)
|