Search found 2 matches

by shirobon
Fri Sep 02, 2016 8:43 pm
Forum: Programming Discussion
Topic: Another way of supporting multiplatform
Replies: 3
Views: 6676

Re: Another way of supporting multiplatform

Thanks for the replies guys. The design I ultimately ended up pursuing goes as follows. Took inspiration from one of Falco's posts. First I have the platform.h which contains a bunch of #defines based off what you are targetting. #ifndef PLATFORM_H #define PLATFORM_H #define JSD_VERSION 0.0.1 #defin...
by shirobon
Wed Aug 31, 2016 3:14 am
Forum: Programming Discussion
Topic: Another way of supporting multiplatform
Replies: 3
Views: 6676

Another way of supporting multiplatform

Hello, I've recently been getting ready to work on my first multiplatform project for DC and PC, and I'm not too sure of which way I should support multiplatform. The obvious and maybe naive way would just be a bunch of preprocessor directives on all the function definitions and whatnot for conditio...