mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(registry): add basic registry implementation
This commit is contained in:
parent
2ffa8217c0
commit
f8a7ac7001
20 changed files with 1318 additions and 73 deletions
|
|
@ -7,6 +7,7 @@ file(GLOB STORM_SOURCES
|
|||
"crypto/*.cpp"
|
||||
"error/*.cpp"
|
||||
"hash/*.cpp"
|
||||
"option*/*.cpp"
|
||||
"queue/*.cpp"
|
||||
"string/*.cpp"
|
||||
"thread/*.cpp"
|
||||
|
|
@ -17,6 +18,7 @@ if(WHOA_SYSTEM_WIN)
|
|||
"win/*.cpp"
|
||||
"error/win/*.cpp"
|
||||
"thread/win/*.cpp"
|
||||
"registry/win/*.cpp"
|
||||
)
|
||||
list(APPEND STORM_SOURCES ${STORM_WIN_SOURCES})
|
||||
endif()
|
||||
|
|
@ -28,6 +30,7 @@ if(WHOA_SYSTEM_MAC)
|
|||
"error/unix/*.cpp"
|
||||
"thread/mac/*.cpp"
|
||||
"thread/mac/*.mm"
|
||||
"registry/mac/*.mm"
|
||||
)
|
||||
list(APPEND STORM_SOURCES ${STORM_MAC_SOURCES})
|
||||
endif()
|
||||
|
|
@ -37,6 +40,7 @@ if(WHOA_SYSTEM_LINUX)
|
|||
"linux/*.cpp"
|
||||
"error/unix/*.cpp"
|
||||
"thread/linux/*.cpp"
|
||||
"registry/linux/*.cpp"
|
||||
)
|
||||
list(APPEND STORM_SOURCES ${STORM_LINUX_SOURCES})
|
||||
endif()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue