-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
I noticed the following issues in your source code which many people will encounter while installation.
- You have not mentioned which OS the commands in the README are for.
cmake ..gives many errors for Windows.CMakeLists.txthas to be modified to mitigate those errors. - For some Linux versions, you need to link using
pthreadlibrary to use pthread_create and pthread_join functions. This could be fixed just by adding a linetarget_link_libraries(mercury pthread)inCMakeLists.txt - The README is not beginner friendly. It seems that you expected the people with some background knowledge to contribute. But having some additional information in README will help everyone. This includes -
- Informing how to download AAPL.csv and modifying start_date and end_date in
config.json - OS specific cmake instructions