-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
53 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,62 @@ | ||
set(name simple-network-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME simple-network-example | ||
SOURCE_FILES simple-network-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} ${liblorawan} | ||
) | ||
|
||
set(name network-server-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME network-server-example | ||
SOURCE_FILES network-server-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name complete-network-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME complete-network-example | ||
SOURCE_FILES complete-network-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name adr-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME adr-example | ||
SOURCE_FILES adr-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name energy-model-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME lorawan-energy-model-example | ||
SOURCE_FILES lorawan-energy-model-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name aloha-throughput) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME aloha-throughput | ||
SOURCE_FILES aloha-throughput.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name parallel-reception-example) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME parallel-reception-example | ||
SOURCE_FILES parallel-reception-example.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) | ||
|
||
set(name frame-counter-update) | ||
set(source_files ${name}.cc) | ||
set(header_files) | ||
set(libraries_to_link ${libcore} ${liblorawan}) | ||
build_lib_example( | ||
"${name}" "${source_files}" "${header_files}" "${libraries_to_link}" | ||
NAME frame-counter-update | ||
SOURCE_FILES frame-counter-update.cc | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${liblorawan} | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters