29 lines
1.2 KiB
CMake
29 lines
1.2 KiB
CMake
add_dolphin_test(AssemblerTest AssemblerTest.cpp)
|
|
add_dolphin_test(BitFieldTest BitFieldTest.cpp)
|
|
add_dolphin_test(BitSetTest BitSetTest.cpp)
|
|
add_dolphin_test(BitUtilsTest BitUtilsTest.cpp)
|
|
add_dolphin_test(BlockingLoopTest BlockingLoopTest.cpp)
|
|
add_dolphin_test(BusyLoopTest BusyLoopTest.cpp)
|
|
add_dolphin_test(CommonFuncsTest CommonFuncsTest.cpp)
|
|
add_dolphin_test(CryptoEcTest Crypto/EcTest.cpp)
|
|
add_dolphin_test(CryptoSHA1Test Crypto/SHA1Test.cpp)
|
|
add_dolphin_test(EnumFormatterTest EnumFormatterTest.cpp)
|
|
add_dolphin_test(EventTest EventTest.cpp)
|
|
add_dolphin_test(FileUtilTest FileUtilTest.cpp)
|
|
add_dolphin_test(FixedSizeQueueTest FixedSizeQueueTest.cpp)
|
|
add_dolphin_test(FlagTest FlagTest.cpp)
|
|
add_dolphin_test(FloatUtilsTest FloatUtilsTest.cpp)
|
|
add_dolphin_test(MathUtilTest MathUtilTest.cpp)
|
|
add_dolphin_test(NandPathsTest NandPathsTest.cpp)
|
|
add_dolphin_test(SettingsHandlerTest SettingsHandlerTest.cpp)
|
|
add_dolphin_test(SPSCQueueTest SPSCQueueTest.cpp)
|
|
add_dolphin_test(StringUtilTest StringUtilTest.cpp)
|
|
add_dolphin_test(SwapTest SwapTest.cpp)
|
|
|
|
if (_M_X86_64)
|
|
add_dolphin_test(x64EmitterTest x64EmitterTest.cpp)
|
|
target_link_libraries(x64EmitterTest PRIVATE bdisasm)
|
|
elseif (_M_ARM_64)
|
|
add_dolphin_test(Arm64EmitterTest Arm64EmitterTest.cpp)
|
|
endif()
|