mirror of
https://github.com/nim-lang/Nim.git
synced 2026-09-19 11:28:17 +00:00
changed the compiler's path handling; fixes #546
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import
|
||||
sfml, chipmunk,
|
||||
sg_assets, sfml_stuff, keineschweine
|
||||
sg_assets, sfml_stuff, "../keineschweine"
|
||||
|
||||
|
||||
proc accel*(obj: PVehicle, dt: float) =
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
# this file only exists to mark 'main.nim' as the main file
|
||||
|
||||
--path:"$projectpath"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import
|
||||
tri_engine/config,
|
||||
tri_engine/math/vec
|
||||
../config,
|
||||
vec
|
||||
|
||||
type
|
||||
TCircle* = tuple[p: TV2[TR], r: TR]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import
|
||||
macros,
|
||||
tri_engine/config
|
||||
"../config"
|
||||
|
||||
type
|
||||
TV2*[T:SomeNumber=TR] = array[0..1, T]
|
||||
|
||||
Reference in New Issue
Block a user