aardappel / procrastitracker

a Windows time tracking application
http://strlen.com/procrastitracker/
510 stars 54 forks source link

src/Makefile fix and more comment; src/node.h clean #25

Closed jt-fuw closed 7 years ago

jt-fuw commented 7 years ago
  1. The src/Makefile was making a dynamic executable, which requires MinGW libraries to be in search path - I added "-static" option to produce executable, which can be used without these libraries.
  2. Added few comment lines to src/Makefile, explaining it is making an executable only, not an installer.
  3. src/node.h contained function header static int nodesorter(node a, node b) which I tried, it caused an error, and I marked it as a comment - now I removed it completely.
aardappel commented 7 years ago

Thanks!