Re: [Seqan-dev] SeqAn File I/O Compile errors


Hi!

Your linker is not instructed to link with pthreads library. Try adding this into your CMakeLists.txt (before add_executable):

find_package( Threads )
link_libraries( ${CMAKE_THREAD_LIBS_INIT} )

On Sat, Aug 11, 2018 at 8:39 AM Tanveer Ahmad - EWI <T.Ahmad@tudelft.nl> wrote:

Hi,


Greetings!


First of all, I really appreciate the work done in context of SeqAn library. Seems very useful.


I just tried to run the library. Basic example (print out) is working fine. But when I compiled the basic File I/O code like in http://seqan.readthedocs.io/en/develop/Tutorial/InputOutput/FileIOOverview.html, I'm getting some annoyed errors (attached), Can you people look into these errors and suggest a way out to compile it successfully. Thanks.



--
Tanveer A
PhD Candidate
Computer Engineering Laboratory,
Department of Quantum & Computer Engineering
EEMCS, TU Delft, The Netherlands
_______________________________________________
seqan-dev mailing list
seqan-dev@lists.fu-berlin.de
https://lists.fu-berlin.de/listinfo/seqan-dev


--
Fedor Gusev.