cmake: add missing exe implementation for win32

This commit is contained in:
Danny Robson 2017-01-23 15:09:53 +11:00
parent 59a32aede6
commit 395545f43a

View File

@ -74,6 +74,8 @@ if (LINUX)
list (APPEND UTIL_FILES exe_linux.cpp) list (APPEND UTIL_FILES exe_linux.cpp)
elseif (FREEBSD) elseif (FREEBSD)
list (APPEND UTIL_FILES exe_freebsd.cpp) list (APPEND UTIL_FILES exe_freebsd.cpp)
elseif (WIN32)
list (APPEND UTIL_FILES exe_win32.cpp)
else () else ()
message (FATAL_ERROR "unhandled platform") message (FATAL_ERROR "unhandled platform")
endif () endif ()