add eupl license text to all relevant files
This commit is contained in:
parent
6967f4106e
commit
641d86e6fa
21 changed files with 42 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -1,3 +1,5 @@
|
|||
# Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
CC = clang
|
||||
CFLAGS = -std=c11 -Wall -Wextra -Wpedantic
|
||||
CFLAGS += -fstrict-aliasing
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
LDFLAGS = -L$(BIN) -lptk
|
||||
|
||||
EXAMPLE_DIR = examples
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <ptk.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#version 450
|
||||
|
||||
layout(constant_id = 0) const int PTK_COMPONENT_TYPE_ELLIPSE = 0;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#version 450
|
||||
|
||||
layout(binding = 0) uniform UniformBufferObject {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk.h>
|
||||
#include <ptk_log.h>
|
||||
#include <ptk_list.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk_list.h>
|
||||
|
||||
#include <errno.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_LIST_H_
|
||||
#define PTK_PTK_LIST_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk_log.h>
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_OPTION_H_
|
||||
#define PTK_PTK_OPTION_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk.h>
|
||||
#include <ptk_vk/components.h>
|
||||
#include <ptk_vk/init.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_VK_COMPONENTS_H_
|
||||
#define PTK_PTK_VK_COMPONENTS_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk_vk/draw.h>
|
||||
|
||||
#include <ptk_vk/init.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_VK_DRAW_H_
|
||||
#define PTK_PTK_VK_DRAW_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk_vk/init.h>
|
||||
|
||||
#include <ptk_vk/components.h>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_VK_INIT_H_
|
||||
#define PTK_PTK_VK_INIT_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <ptk_vk/utils.h>
|
||||
|
||||
const char *vk_result_string(VkResult res) {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef PTK_PTK_VK_UTILS_H_
|
||||
#define PTK_PTK_VK_UTILS_H_
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
INCLUDE += test
|
||||
CFLAGS += $(addprefix -I, $(INCLUDE))
|
||||
LDFLAGS = -L$(BIN) -lptk
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#include <test.h>
|
||||
#include <ptk_list.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
|
||||
|
||||
#ifndef TEST_TEST_H_
|
||||
#define TEST_TEST_H_
|
||||
|
||||
|
|
Loading…
Reference in a new issue