feat(thread): implement CSRWLock::Enter and CSRWLock::Leave for windows (#1)

This commit is contained in:
fallenoak 2020-12-01 17:40:37 -06:00 committed by GitHub
parent 8210d368f6
commit 2fb9fd284c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 61 additions and 6 deletions

View file

@ -5,6 +5,14 @@ file(GLOB STORM_SOURCES
"thread/*.cpp"
)
if(WHOA_PLATFORM_WIN)
file(GLOB STORM_WIN_SOURCES
"win/*.cpp"
"thread/win/*.cpp"
)
list(APPEND STORM_SOURCES ${STORM_WIN_SOURCES})
endif()
if(WHOA_PLATFORM_MAC)
file(GLOB STORM_MAC_SOURCES
"mac/*.cpp"