This module provides several variables. Paired with static if's these variables can be used for conditional compilation *
An enum string representing the target architecture. possible values:
An enum string representing the target operating system. possible values:
1 static if(os == "Windows") { 2 //code for windows 3 } 4 else { 5 //generic code 6 }
See Source File
This module provides several variables. Paired with static if's these variables can be used for conditional compilation *