エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
c++ #ifdef Mac OS X question
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
c++ #ifdef Mac OS X question
I am fairly new to C++. I am currently working on a group project and we want to make our classes... I am fairly new to C++. I am currently working on a group project and we want to make our classes compatible with both the lab computers (Windows) and my computer (Mac OS X). Here is what we have been putting at the top of our files: #ifdef TARGET_OS_X # include <GLUT/glut.h> # include <OpenGL/OpenGL.h> #elif defined _WIN32 || defined _WIN64 # include <GL\glut.h> #endif I realize this question has