Skip to content
Merged
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ set(PROJECT_INC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/inc")
if(NOT TARGET ${PROJECT_NAME})
add_library(${PROJECT_NAME} INTERFACE)

target_include_directories(${PROJECT_NAME}
INTERFACE
target_include_directories(${PROJECT_NAME}
INTERFACE
$<BUILD_INTERFACE:${PROJECT_INC_DIR}>
$<INSTALL_INTERFACE:include>
)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Mason L'Etoile
Copyright (c) 2025 Starlet Libraries, Mason L'Etoile

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Starlet Math

[![Tests](https://github.com/starlet-engine/math/actions/workflows/tests.yml/badge.svg)](https://github.com/starlet-engine/math/actions/workflows/tests.yml)
[![Tests](https://github.com/starlet-libs/math/actions/workflows/tests.yml/badge.svg)](https://github.com/starlet-libs/math/actions/workflows/tests.yml)
[![C++20](https://img.shields.io/badge/C%2B%2B-20-blue.svg)](https://isocpp.org/std/the-standard)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)

Expand Down Expand Up @@ -37,7 +37,7 @@ This makes it perfect for learning, experimentation, but not a drop-in replaceme
include(FetchContent)

FetchContent_Declare(starlet_math
GIT_REPOSITORY https://github.com/starlet-engine/math.git
GIT_REPOSITORY https://github.com/starlet-libs/math.git
GIT_TAG main
)
FetchContent_MakeAvailable(starlet_math)
Expand All @@ -59,7 +59,7 @@ executable('app_name', 'main.cpp', dependencies: starlet_math_dep)
## Building and Testing
```bash
# 1. Clone starlet-math
git clone https://github.com/starlet-engine/math.git
git clone https://github.com/starlet-libs/math.git
cd starlet-math
```

Expand Down
Loading