Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
VILLASnode
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
14
Issues
14
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ACS
P
Public
VILLASframework
VILLASnode
Commits
ace99424
Commit
ace99424
authored
Nov 12, 2020
by
Steffen Vogel
🎅🏼
Committed by
Steffen Vogel
Dec 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: fix linking if libraries are in non-standard locations
parent
8749088b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
lib/nodes/CMakeLists.txt
lib/nodes/CMakeLists.txt
+5
-5
No files found.
lib/nodes/CMakeLists.txt
View file @
ace99424
...
...
@@ -65,7 +65,7 @@ endif()
if
(
WITH_NODE_ULDAQ
)
list
(
APPEND NODE_SRC uldaq.cpp
)
list
(
APPEND INCLUDE_DIRS
${
LIBULDAQ_INCLUDE_DIRS
}
)
list
(
APPEND LIBRARIES
PkgConfig::LIBULDAQ uldaq
)
list
(
APPEND LIBRARIES
${
LIBULDAQ_LINK_LIBRARIES
}
)
endif
()
# Enable shared memory node-type
...
...
@@ -77,7 +77,7 @@ endif()
if
(
WITH_NODE_IEC61850
)
list
(
APPEND NODE_SRC iec61850_sv.cpp iec61850.cpp
)
list
(
APPEND INCLUDE_DIRS
${
LIBIEC61850_INCLUDE_DIRS
}
)
list
(
APPEND LIBRARIES
PkgConfig::LIBIEC61850
${
LIBIEC61850
_LIBRARIES
}
)
list
(
APPEND LIBRARIES
${
LIBIEC61850_LINK
_LIBRARIES
}
)
endif
()
# Enable OPAL-RT Asynchronous Process support (will result in 32bit binary!!!)
...
...
@@ -91,7 +91,7 @@ endif()
if
(
WITH_NODE_NANOMSG
)
list
(
APPEND NODE_SRC nanomsg.cpp
)
list
(
APPEND INCLUDE_DIRS
${
NANOMSG_INCLUDE_DIRS
}
)
list
(
APPEND LIBRARIES
${
NANOMSG_LIBRARIES
}
)
list
(
APPEND LIBRARIES
${
NANOMSG_LI
NK_LI
BRARIES
}
)
endif
()
# Enable ZeroMQ node type when libzmq is available
...
...
@@ -133,7 +133,7 @@ endif()
if
(
WITH_NODE_COMEDI
)
list
(
APPEND NODE_SRC comedi.cpp
)
list
(
APPEND INCLUDE_DIRS
${
COMEDILIB_INCLUDE_DIRS
}
)
list
(
APPEND LIBRARIES
${
COMEDILIB_LIBRARIES
}
)
list
(
APPEND LIBRARIES
${
COMEDILIB_LI
NK_LI
BRARIES
}
)
endif
()
# Enable Infiniband support
...
...
@@ -147,7 +147,7 @@ endif()
if
(
WITH_NODE_RTP
)
list
(
APPEND NODE_SRC rtp.cpp
)
list
(
APPEND INCLUDE_DIRS
${
RE_INCLUDE_DIRS
}
)
list
(
APPEND LIBRARIES
PkgConfig::RE
)
list
(
APPEND LIBRARIES
${
RE_LINK_LIBRARIES
}
)
endif
()
# Enable CAN node type
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment