Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NetBeans と Visial では、アプリの日付とビルド時間を何らかの方法で静的に保存できることを知っています。g ++を使用してリモートサーバー上にいくつかのソフトウェアを構築していますが、たとえば次のようなものを作成する方法があるのだろうかと思います:
#define BUIL_DATE <here should be the compilation date>
後でアプリで使用できること。
試す:
#define BUIL_DATE \ do { \ std::cout << " compiled on " __DATE__ " : " __TIME__ << "\n"; \ } while (0) int main(int argc, char* argv[]) { BUIL_DATE; return 0; }