mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
foreign_library allow for Pascal-style grouping
This commit is contained in:
+4
-2
@@ -1,5 +1,7 @@
|
||||
#foreign_system_library lib "opengl32.lib" when ODIN_OS == "windows";
|
||||
#foreign_system_library lib "gl" when ODIN_OS == "linux";
|
||||
foreign_system_library (
|
||||
lib "opengl32.lib" when ODIN_OS == "windows";
|
||||
lib "gl" when ODIN_OS == "linux";
|
||||
)
|
||||
import (
|
||||
win32 "sys/windows.odin" when ODIN_OS == "windows";
|
||||
"sys/wgl.odin" when ODIN_OS == "windows";
|
||||
|
||||
Reference in New Issue
Block a user