Closed avilleret closed 7 months ago
On Linux, to link my program against DataFrame fd56c03 with CMake, I have to add tbb in the link libraries list, i.e.:
tbb
target_link_libraries(database_processor DataFrame::DataFrame tbb)
I think this should come from DataFrame::DataFrame itself thanks to INTERFACE_LINK_LIBRARIES
DataFrame::DataFrame
INTERFACE_LINK_LIBRARIES
I'm pretty sure tbb could be added around this line https://github.com/hosseinmoein/DataFrame/blob/master/CMakeLists.txt#L69 but I'm not sure in which case it is required.
That's a very specific requirement. I am not a cmake guru. If you know a way to make this a clean option in compiling, please send me a PR.
On Linux, to link my program against DataFrame fd56c03 with CMake, I have to add
tbb
in the link libraries list, i.e.:I think this should come from
DataFrame::DataFrame
itself thanks toINTERFACE_LINK_LIBRARIES
I'm pretty sure
tbb
could be added around this line https://github.com/hosseinmoein/DataFrame/blob/master/CMakeLists.txt#L69 but I'm not sure in which case it is required.