named-data-ndnSIM / ndnSIM

ndnSIM: NS-3 based NDN simulator
GNU General Public License v3.0
108 stars 165 forks source link

complile problem #22

Closed weiwang1206 closed 11 years ago

weiwang1206 commented 11 years ago

How to compile my own .cc file like the examples? thanks?

cawka commented 11 years ago

Hi Wei,

For your own scenario files I would recommend using a moduled approach, when you don't directly add code to NS-3/ndnSIM, but write extensions that depend on NS-3/ndnSIM. Here is the template that you can use: https://github.com/cawka/ndnSIM-scenario-template and two examples: https://github.com/cawka/ndnSIM-comcom-stateful-fw and https://github.com/cawka/ndnSIM-nom-rapid-car2car. In this template, you just put your files into scenarios/ directory and they should automatically be compiled.

If you want to do quick experiments, you can put your .cc files into scratch/ folder of NS-3. When files are placed in the scratch/ folder, they will automatically compiled by the ./waf script.

Btw, you're welcome to join ndnSIM mailing list if you haven't joined yet (http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim).

Thanks, Alex