feat(error): add exception-to-string translation for windows

This commit is contained in:
Tristan 'Natrist' Cormier 2023-03-20 22:51:46 -04:00 committed by GitHub
parent bebe40f781
commit d7fc37cef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 104 additions and 2 deletions

View file

@ -8,12 +8,14 @@ file(GLOB STORM_SOURCES
"queue/*.cpp"
"string/*.cpp"
"thread/*.cpp"
"error/*.cpp"
)
if(WHOA_SYSTEM_WIN)
file(GLOB STORM_WIN_SOURCES
"win/*.cpp"
"thread/win/*.cpp"
"error/win/*.cpp"
)
list(APPEND STORM_SOURCES ${STORM_WIN_SOURCES})
endif()