forked from OpenEtherCATsociety/SOEM
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make lib static remove require 3.1 xenomai version fix simple_ng compilation
- Loading branch information
1 parent
83c6264
commit 296bf67
Showing
11 changed files
with
158 additions
and
21 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
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
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,5 +1,5 @@ | ||
|
||
set(SOURCES eepromtool.c) | ||
add_executable(eepromtool ${SOURCES}) | ||
target_link_libraries(eepromtool soem) | ||
target_link_libraries(eepromtool ${SOEM_LIB_NAME}) | ||
install(TARGETS eepromtool DESTINATION bin) |
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,5 +1,10 @@ | ||
|
||
set(SOURCES simple_test.c) | ||
add_executable(simple_test ${SOURCES}) | ||
target_link_libraries(simple_test soem) | ||
if ( Xenomai_FOUND ) | ||
xenomai_target_bootstrap(simple_test | ||
SKINS posix | ||
) | ||
endif() | ||
target_link_libraries(simple_test PRIVATE ${SOEM_LIB_NAME}) | ||
install(TARGETS simple_test DESTINATION bin) |
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,5 +1,10 @@ | ||
|
||
set(SOURCES slaveinfo.c) | ||
add_executable(slaveinfo ${SOURCES}) | ||
target_link_libraries(slaveinfo soem) | ||
if ( Xenomai_FOUND ) | ||
xenomai_target_bootstrap(slaveinfo | ||
SKINS posix | ||
) | ||
endif() | ||
target_link_libraries(slaveinfo PRIVATE ${SOEM_LIB_NAME}) | ||
install(TARGETS slaveinfo DESTINATION bin) |
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,4 +1,9 @@ | ||
set(SOURCES simple_ng.c) | ||
add_executable(simple_ng ${SOURCES}) | ||
target_link_libraries(simple_ng soem) | ||
if ( Xenomai_FOUND ) | ||
xenomai_target_bootstrap(simple_test | ||
SKINS posix | ||
) | ||
endif() | ||
target_link_libraries(simple_ng PRIVATE ${SOEM_LIB_NAME}) | ||
install(TARGETS simple_ng DESTINATION bin) |