28 lines
669 B
Text
28 lines
669 B
Text
/*
|
|
Module remotery provides bindings for the Remotery
|
|
CPU/GPU profiling library.
|
|
*/
|
|
#module_parameters(STATIC := true);
|
|
|
|
#if STATIC {
|
|
#if OS == {
|
|
case .WINDOWS;
|
|
remotery :: #library,no_dll,link_always "win/remotery";
|
|
case .MACOS;
|
|
remotery :: #library,no_dll,link_always "mac/remotery";
|
|
case .LINUX;
|
|
remotery :: #library,no_dll,link_always "linux/remotery";
|
|
}
|
|
}
|
|
else {
|
|
#if OS == {
|
|
case .WINDOWS;
|
|
remotery :: #library "win/remotery";
|
|
case .MACOS;
|
|
remotery :: #library "mac/remotery";
|
|
case .LINUX;
|
|
remotery :: #library "linux/remotery";
|
|
}
|
|
}
|
|
|
|
#load "remotery.jai";
|