notes.txt 834 B

1234567891011
  1. Today - we compiled all the .cpp files into object files.
  2. The PDFHummus codebase did not have a build for anything other than
  3. MSVC. Tried to compile PDFWriter.cpp, but there were a huge amount of missing
  4. dependencies (both in source type declarations & missing include files).
  5. Previously, these were handled in the build tool, so we had to create a new build tool
  6. that also handled these problems. We found that nearly all (127) out of 152 source files,
  7. could be compiled without any dependency problems but that left 25 files to hunt down.
  8. Each of the files was put into a Makefile along with special compile flags to get them to
  9. compile successfully.
  10. At this point freetype2 has been compiled, but the other external libraries(e.g. libpng, zlib, libjpg, tiff, etc) need to be compiled so that we can link together an executable.