mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-22 06:08:03 +00:00
Compare commits
8 Commits
c7948ce22a
...
aa9e9931c2
Author | SHA1 | Date | |
---|---|---|---|
|
aa9e9931c2 | ||
|
902ff3b0a9 | ||
|
2938c00dc8 | ||
|
ba78b35604 | ||
|
c9e1a63378 | ||
|
20543bdc74 | ||
|
c13eef1c1e | ||
|
c24a41b9e4 |
@ -1,6 +1,8 @@
|
|||||||
cmake_minimum_required(VERSION 3.27)
|
cmake_minimum_required(VERSION 3.27)
|
||||||
project(clay)
|
project(clay)
|
||||||
|
|
||||||
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
||||||
|
|
||||||
add_subdirectory("examples/cpp-project-example")
|
add_subdirectory("examples/cpp-project-example")
|
||||||
|
|
||||||
# Don't try to compile C99 projects using MSVC
|
# Don't try to compile C99 projects using MSVC
|
||||||
|
32
cmake/FindCairo.cmake
Normal file
32
cmake/FindCairo.cmake
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Defines:
|
||||||
|
# CAIRO_FOUND - System has Cairo
|
||||||
|
# CAIRO_INCLUDE_DIRS - Cairo include directories
|
||||||
|
# CAIRO_LIBRARY - Cairo library
|
||||||
|
# Cairo::Cairo - Imported target
|
||||||
|
|
||||||
|
find_path(CAIRO_INCLUDE_DIRS
|
||||||
|
NAMES cairo/cairo.h
|
||||||
|
PATHS ${CAIRO_ROOT_DIR}
|
||||||
|
PATH_SUFFIXES include
|
||||||
|
)
|
||||||
|
|
||||||
|
find_library(CAIRO_LIBRARY
|
||||||
|
NAMES cairo
|
||||||
|
PATHS ${CAIRO_ROOT_DIR}
|
||||||
|
PATH_SUFFIXES lib lib64
|
||||||
|
)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(Cairo
|
||||||
|
REQUIRED_VARS CAIRO_LIBRARY CAIRO_INCLUDE_DIRS
|
||||||
|
)
|
||||||
|
|
||||||
|
if(Cairo_FOUND AND NOT TARGET Cairo::Cairo)
|
||||||
|
add_library(Cairo::Cairo UNKNOWN IMPORTED)
|
||||||
|
set_target_properties(Cairo::Cairo PROPERTIES
|
||||||
|
IMPORTED_LOCATION "${CAIRO_LIBRARY}"
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${CAIRO_INCLUDE_DIRS}"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
mark_as_advanced(CAIRO_INCLUDE_DIRS CAIRO_LIBRARY)
|
@ -33,8 +33,9 @@ target_link_libraries(SDL2_video_demo PUBLIC
|
|||||||
SDL2::SDL2-static
|
SDL2::SDL2-static
|
||||||
SDL2_ttf::SDL2_ttf-static
|
SDL2_ttf::SDL2_ttf-static
|
||||||
)
|
)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
|
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces -DCLAY_DEBUG")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET SDL2_video_demo POST_BUILD
|
TARGET SDL2_video_demo POST_BUILD
|
||||||
|
@ -2,14 +2,19 @@ cmake_minimum_required(VERSION 3.27)
|
|||||||
project(clay_examples_cairo_pdf_rendering C)
|
project(clay_examples_cairo_pdf_rendering C)
|
||||||
set(CMAKE_C_STANDARD 99)
|
set(CMAKE_C_STANDARD 99)
|
||||||
|
|
||||||
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../cmake")
|
||||||
|
|
||||||
|
|
||||||
add_executable(clay_examples_cairo_pdf_rendering main.c)
|
add_executable(clay_examples_cairo_pdf_rendering main.c)
|
||||||
|
|
||||||
target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC)
|
find_package(Cairo REQUIRED)
|
||||||
target_include_directories(clay_examples_cairo_pdf_rendering PUBLIC .)
|
|
||||||
|
|
||||||
target_link_libraries(clay_examples_cairo_pdf_rendering PUBLIC cairo)
|
target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror")
|
target_include_directories(clay_examples_cairo_pdf_rendering PUBLIC . ${CAIRO_INCLUDE_DIRS})
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
|
||||||
|
target_link_libraries(clay_examples_cairo_pdf_rendering PUBLIC Cairo::Cairo)
|
||||||
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET clay_examples_cairo_pdf_rendering POST_BUILD
|
TARGET clay_examples_cairo_pdf_rendering POST_BUILD
|
||||||
|
@ -5,7 +5,7 @@ set(CMAKE_C_STANDARD 99)
|
|||||||
|
|
||||||
add_executable(clay_official_website main.c)
|
add_executable(clay_official_website main.c)
|
||||||
|
|
||||||
target_compile_options(clay_official_website PUBLIC -Wall -Werror -Wno-unknown-pragmas)
|
target_compile_options(clay_official_website PUBLIC -Wall -Werror -Wno-unknown-pragmas -Wno-error=missing-braces)
|
||||||
target_include_directories(clay_official_website PUBLIC .)
|
target_include_directories(clay_official_website PUBLIC .)
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
@ -8,5 +8,5 @@ add_executable(clay_examples_cpp_project_example main.cpp)
|
|||||||
|
|
||||||
target_include_directories(clay_examples_cpp_project_example PUBLIC .)
|
target_include_directories(clay_examples_cpp_project_example PUBLIC .)
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Werror -Wall")
|
set(CMAKE_CXX_FLAGS_DEBUG "-Werror -Wall -Wno-error=missing-braces")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
@ -24,8 +24,9 @@ target_compile_options(clay_examples_introducing_clay_video_demo PUBLIC)
|
|||||||
target_include_directories(clay_examples_introducing_clay_video_demo PUBLIC .)
|
target_include_directories(clay_examples_introducing_clay_video_demo PUBLIC .)
|
||||||
|
|
||||||
target_link_libraries(clay_examples_introducing_clay_video_demo PUBLIC raylib)
|
target_link_libraries(clay_examples_introducing_clay_video_demo PUBLIC raylib)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
|
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces -DCLAY_DEBUG")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET clay_examples_introducing_clay_video_demo POST_BUILD
|
TARGET clay_examples_introducing_clay_video_demo POST_BUILD
|
||||||
|
@ -24,8 +24,9 @@ target_compile_options(clay_examples_raylib_sidebar_scrolling_container PUBLIC)
|
|||||||
target_include_directories(clay_examples_raylib_sidebar_scrolling_container PUBLIC .)
|
target_include_directories(clay_examples_raylib_sidebar_scrolling_container PUBLIC .)
|
||||||
|
|
||||||
target_link_libraries(clay_examples_raylib_sidebar_scrolling_container PUBLIC raylib)
|
target_link_libraries(clay_examples_raylib_sidebar_scrolling_container PUBLIC raylib)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
|
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces -DCLAY_DEBUG")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET clay_examples_raylib_sidebar_scrolling_container POST_BUILD
|
TARGET clay_examples_raylib_sidebar_scrolling_container POST_BUILD
|
||||||
|
3
generator/array_allocate_pointer.template.c
Normal file
3
generator/array_allocate_pointer.template.c
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
$NAME$ $NAME$_Allocate_Arena(uint32_t capacity, Clay_Arena *arena) {
|
||||||
|
return CLAY__INIT($NAME$){.capacity = capacity, .length = 0, .internalArray = ($TYPE$ *)Clay__Array_Allocate_Arena(capacity, sizeof($TYPE$), CLAY__POINTER_ALIGNMENT, arena)};
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
typedef struct
|
CLAY__TYPEDEF($NAME$, struct
|
||||||
{
|
{
|
||||||
uint32_t capacity;
|
uint32_t capacity;
|
||||||
uint32_t length;
|
uint32_t length;
|
||||||
$TYPE$ *internalArray;
|
$TYPE$ *internalArray;
|
||||||
} $NAME$;
|
});
|
@ -1,5 +1,5 @@
|
|||||||
typedef struct
|
CLAY__TYPEDEF($NAME$Slice, struct
|
||||||
{
|
{
|
||||||
uint32_t length;
|
uint32_t length;
|
||||||
$TYPE$ *internalArray;
|
$TYPE$ *internalArray;
|
||||||
} $NAME$Slice;
|
});
|
Loading…
Reference in New Issue
Block a user