Skip to content

Commit

Permalink
move config to private/
Browse files Browse the repository at this point in the history
  • Loading branch information
planetis-m committed Nov 20, 2024
1 parent e2d4aa6 commit 8e372e2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ For detailed instructions on advanced topics, please refer to our

Here are quick links to some important sections:

- [Customize raylib settings](manual/advance_usage.md#changing-raylib-settings-with-nim-defines) - Learn how to customize raylib settings with Nim defines
- [Customize raylib settings](manual/advanced_usage.md#changing-raylib-settings-with-nim-defines) - Learn how to customize raylib settings with Nim defines
- [Important Usage Tips](manual/advanced_usage.md#important-usage-tips) - Learn how to properly call `closeWindow` and other crucial tips
- [Building for the Web (WebAssembly)](manual/advanced_usage.md#building-for-the-web-webassembly) - Instructions for compiling your project for web browsers
- [Building for Android](manual/advanced_usage.md#building-for-android) - Step-by-step guide for Android development
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/raylib.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ from std/strutils import addf, toHex
from std/unicode import Rune
from std/syncio import writeFile
import std/[assertions, paths]
import rconfig
import private/rconfig
const raylibDir = currentSourcePath().Path.parentDir / Path"raylib"

{.passC: "-I" & raylibDir.string.}
Expand Down
2 changes: 1 addition & 1 deletion tools/wrapper/snippets/raylib_header.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ from std/strutils import addf, toHex
from std/unicode import Rune
from std/syncio import writeFile
import std/[assertions, paths]
import rconfig
import private/rconfig
const raylibDir = currentSourcePath().Path.parentDir / Path"raylib"

{.passC: "-I" & raylibDir.string.}
Expand Down

0 comments on commit 8e372e2

Please sign in to comment.