Implement switch case generation.

This commit is contained in:
Skyth
2024-09-18 11:37:50 +03:00
parent fc43264f72
commit e0cb6c7903
4 changed files with 59 additions and 4 deletions

View File

@@ -10,6 +10,14 @@ endif()
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
include(FetchContent)
FetchContent_Declare(
tomlplusplus
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
GIT_TAG v3.4.0
)
FetchContent_MakeAvailable(tomlplusplus)
add_subdirectory(${THIRDPARTY_ROOT}/disasm)
project ("PowerRecomp-ALL")