Files
fail/src/core/efw/CMakeLists.txt
hsc f9c96ddf2d prefix internal libraries to avoid naming conflicts with system libraries
This is a precaution to avoid current and future naming conflicts with
common system libraries.  libutil (part of libc) is the first, but probably
not the last example that already caused trouble twice.

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1614 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
2012-09-12 07:52:30 +00:00

16 lines
336 B
CMake

set(SRCS
CoroutineManager.hpp
CoroutineManager.cc
ExperimentFlow.hpp
JobClient.hpp
JobClient.cc
)
add_library(fail-efw ${SRCS})
add_dependencies(fail-efw fail-comm)
find_package(LibPCL REQUIRED)
include_directories(${LIBPCL_INCLUDE_DIRS})
link_directories(${LIBPCL_LINK_DIRS})
target_link_libraries(fail-efw ${LIBPCL_LIBRARIES})