add eupl license text to all relevant files

This commit is contained in:
jacekpoz 2024-08-13 00:12:48 +02:00
parent 6967f4106e
commit 641d86e6fa
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
21 changed files with 42 additions and 0 deletions

View file

@ -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

View file

@ -1,3 +1,5 @@
# Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
LDFLAGS = -L$(BIN) -lptk
EXAMPLE_DIR = examples

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#include <stdlib.h>
#include <ptk.h>

View file

@ -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;

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#version 450
layout(binding = 0) uniform UniformBufferObject {

View file

@ -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>

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#include <ptk_list.h>
#include <errno.h>

View file

@ -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_

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#include <ptk_log.h>
#include <stdio.h>

View file

@ -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_

View file

@ -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>

View file

@ -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_

View file

@ -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>

View file

@ -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_

View file

@ -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>

View file

@ -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_

View file

@ -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) {

View file

@ -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_

View file

@ -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

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#include <test.h>
#include <ptk_list.h>

View file

@ -1,3 +1,5 @@
// Copyright (jacekpoz 2024). Licensed under the EUPL-1.2 or later.
#ifndef TEST_TEST_H_
#define TEST_TEST_H_