Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7d42986
HELICS module skeleton and waf script to specify helics location
nightlark Oct 5, 2017
6ec1cda
Move HELICS module from src to contrib folder
nightlark Oct 9, 2017
b8ddc1d
ns-3 bake module config for helics
nightlark Oct 13, 2017
5d76b3a
Find boost and zmq in waf script
nightlark Oct 25, 2017
8d41ac1
HelicsSimulatorImpl using MessageFederate -- possible hanging issue w…
nightlark Oct 25, 2017
cbe067f
Fix static global federate variable
nightlark Oct 25, 2017
ee184f5
add command line parsing to helics example
Oct 25, 2017
f3eb9ed
event loop logic changed to nextTime <= grantedTime, from <.
Oct 26, 2017
d0e8932
add helics application
Oct 27, 2017
1f0c3aa
update helics example
Oct 27, 2017
55268ee
add comment to helics example
Nov 2, 2017
cd6eb2a
Change optional feature name to helics integration for failed to find…
nightlark Nov 30, 2017
80f02bb
Merge branch 'helics' of https://github.com/GMLC-TDC/ns-3-dev-git int…
nightlark Nov 30, 2017
c2e4661
move simple federate code into separate executable
Dec 7, 2017
fff9b6d
add helics examples for using messages directly
Dec 8, 2017
151dca3
Merge branch 'master' into helics
nightlark Dec 12, 2017
2fe4f69
Updated helics header includes and federate type for version 0.9
nightlark Dec 12, 2017
87b1977
Update to use HELICS 0.9 filter API
nightlark Jan 2, 2018
07dc920
Update examples with HELICS 0.9 headers
nightlark Jan 2, 2018
f7005d9
Updated HELICS lib name from helics to helics-static
nightlark Jan 5, 2018
a2a4f06
Change lib for helics conf check to helics-static
nightlark Jan 5, 2018
ddf2ce7
Search lib64 directory for helics library if not in lib directory
nightlark Jan 17, 2018
d2dd8f0
Update to build with helics 1.0 alpha
nightlark Jan 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change optional feature name to helics integration for failed to find…
… boost libs
  • Loading branch information
nightlark committed Nov 30, 2017
commit cd6eb2a080fddeaea2f6a0ab47d9eb44fe1f1bb9
2 changes: 1 addition & 1 deletion contrib/helics/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def required_boost_libs(conf):

def configure(conf):
if not conf.env['LIB_BOOST']:
conf.report_optional_feature("fskit", "fskit integration", False,
conf.report_optional_feature("helics", "helics integration", False,
"Required boost libraries not found")
return;

Expand Down