Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .teamcity/MacOS/Project.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2025 CCP ehf.
package MacOS

import jetbrains.buildServer.configs.kotlin.DslContext
Expand Down
1 change: 1 addition & 0 deletions .teamcity/Windows/Project.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2025 CCP ehf.
package Windows

import jetbrains.buildServer.configs.kotlin.DslContext
Expand Down
1 change: 1 addition & 0 deletions .teamcity/_Self.kt/Project.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2025 CCP ehf.
package _Self

import _Self.buildTypes.*
Expand Down
1 change: 1 addition & 0 deletions .teamcity/_Self.kt/buildTypes/CreateUniversalBuilds.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2026 CCP ehf.
package _Self.buildTypes

import jetbrains.buildServer.configs.kotlin.*
Expand Down
1 change: 1 addition & 0 deletions .teamcity/_Self.kt/buildTypes/PublishToPerforce.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2025 CCP ehf.
package _Self.buildTypes

import jetbrains.buildServer.configs.kotlin.*
Expand Down
1 change: 1 addition & 0 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2025 CCP ehf.
import jetbrains.buildServer.configs.kotlin.*
import jetbrains.buildServer.configs.kotlin.Project

Expand Down
2 changes: 1 addition & 1 deletion cmake/CcpBuildConfigurations.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2025 CCP ehf.
#[[
Defines our supported build configurations, also known as build flavors.

Expand Down
2 changes: 1 addition & 1 deletion cmake/CcpDocsGenerator.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2025 CCP ehf.
function(_create_venv_and_install_packages)
set(options "")
set(single_value_keywords "PYTHON_EXE;VENV_NAME")
Expand Down
2 changes: 1 addition & 1 deletion cmake/CcpTargetConfigurations.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2025 CCP ehf.
macro(ensure_correct_target_type target)
get_target_property(target_type ${target} TYPE)
if(${target_type} STREQUAL "INTERFACE_LIBRARY")
Expand Down
2 changes: 1 addition & 1 deletion cmake/PyTestDiscoverTests.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2025 CCP ehf.
#[[
Automatically add tests with CTest by querying the compiled test executable
for available tests.
Expand Down
2 changes: 1 addition & 1 deletion cmake/internal/PyTestDiscoverTestsImpl.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2025 CCP ehf.
# Overwrite possibly existing ${_CTEST_FILE} with empty file
set(flush_tests_MODE WRITE)

Expand Down
2 changes: 1 addition & 1 deletion python/geo2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2021 CCP ehf.
import blue
import sys

Expand Down
2 changes: 1 addition & 1 deletion python/geo2/test/test_geo2Vector3.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
import unittest
import geo2

Expand Down
2 changes: 1 addition & 1 deletion python/geo2helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
# Code in __init__.py is free from the geo2 dependency.
# Bit odd to have a geo2helpers package free of geo2 dependency,
# maybe we should've been named "mathhelpers" or something..?
Expand Down
2 changes: 1 addition & 1 deletion python/geo2helpers/geo2helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
# Geo2 matrices are all 4x4.
import geo2

Expand Down
2 changes: 1 addition & 1 deletion python/geo2helpers/test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
MATRIX_16 = [1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
Expand Down
2 changes: 1 addition & 1 deletion python/geo2helpers/test/test_geo2helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
import unittest

import testhelpers
Expand Down
2 changes: 1 addition & 1 deletion python/geo2helpers/test/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2026 CCP ehf.
# Copyright © 2014 CCP ehf.
import unittest

import geo2helpers
Expand Down
2 changes: 1 addition & 1 deletion src/Geo2.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.

#include <CcpMath.h>
#include <Python.h>
Expand Down
2 changes: 1 addition & 1 deletion src/Util.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.

#include "Util.h"
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion src/Util.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.
#pragma once
#ifndef Util_h
#define Util_h
Expand Down
2 changes: 1 addition & 1 deletion src/Vector.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.
#include "Vector.h"
#include "Util.h"
#ifndef _WIN32
Expand Down
2 changes: 1 addition & 1 deletion src/Vector.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.
#pragma once
#ifndef Vector_h
#define Vector_h
Expand Down
2 changes: 1 addition & 1 deletion src/VectorD.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2026 CCP ehf.
// Copyright © 2014 CCP ehf.

#include "Vector.h"
#include "Util.h"
Expand Down
3 changes: 2 additions & 1 deletion src/autoversion.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2014 CCP ehf.
/*****************************************************************
* Standin file - autogenerated files are just made by the build
* server.
Expand All @@ -10,6 +11,6 @@
#define EVEVERSIONSTRING "9.9.9.9\0"
#define EVEBUILDDATE "Sometime, someday, somewhere\0"
#define EVECOMPANY "CCP hf.\0"
#define EVECOPYRIGHT " 2009 CCP hf. All rights reserved.\0"
#define EVECOPYRIGHT "© 2009 CCP hf. All rights reserved.\0"
#define EVEPRODUCTVER "9.9\0"
/* end */
1 change: 1 addition & 0 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright © 2014 CCP ehf.
#include "windows.h"

#define EVEFILEDESC "CCP Math Library\0"
Expand Down