Archived

This forum has been archived. Please start a new discussion on GitHub.

file ".depend" included in Makefile

Hey-

I am wondering how the file ".depend" , which is included in Makefile, is generated. It seems that this file is a must if I use ::Application and run() etc.

Thanks!:confused:

y

Comments

  • matthew
    matthew NL, Canada
    The .depend file is generated by running "make depend" assuming you are using an Ice source tree. However, this file is part of the Ice build system and not required to use Application or any other Ice class.
  • To use Ice::Application in your code, simply add
    #include <Ice/Application.h>
    
    to your include directives.

    Cheers,

    Michi.