diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c3d119..5c2e9dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 $ $ ) diff --git a/LICENSE b/LICENSE index ff61db4..d507197 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index a176755..0b25ccd 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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) @@ -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 ```