When cmake didn't find Boost, it would not abort; instead the linking
process after the build would fail with non-obvious error messages.
Thus, make Boost a required dependency (fixes bug 59).
Signed-off-by: Alexandru Gagniuc <redacted>
if(WIN32)
# On Windows/MinGW the we need to use 'thread_win32' instead of 'thread'.
# The library is named libboost_thread_win32* (not libboost_thread*).
-find_package(Boost 1.42 COMPONENTS system thread_win32)
+find_package(Boost 1.42 COMPONENTS system thread_win32 REQUIRED)
else()
-find_package(Boost 1.42 COMPONENTS system thread)
+find_package(Boost 1.42 COMPONENTS system thread REQUIRED)
endif()
#===============================================================================