# Check that people use the good file if(NOT TOP_CMAKE_WAS_SOURCED) message(FATAL_ERROR " You did not 'cmake' the good CMakeLists.txt file. Use the one in the top dir. It is advice to delete all wrongly generated cmake stuff => CMakeFiles & CMakeCache.txt") endif(NOT TOP_CMAKE_WAS_SOURCED) add_library(common) # x86emitter sources target_sources(common PRIVATE AlignedMalloc.cpp Assertions.cpp Console.cpp CrashHandler.cpp DynamicLibrary.cpp Error.cpp FastJmp.cpp FileSystem.cpp General.cpp Image.cpp HTTPDownloader.cpp MemorySettingsInterface.cpp Misc.cpp MD5Digest.cpp PrecompiledHeader.cpp Perf.cpp ProgressCallback.cpp ReadbackSpinManager.cpp Semaphore.cpp SettingsWrapper.cpp StringUtil.cpp TextureDecompress.cpp Timer.cpp ThreadPool.cpp WAVWriter.cpp WindowInfo.cpp emitter/avx.cpp emitter/bmi.cpp emitter/cpudetect.cpp emitter/fpu.cpp emitter/groups.cpp emitter/jmp.cpp emitter/legacy.cpp emitter/legacy_sse.cpp emitter/movs.cpp emitter/simd.cpp emitter/LnxCpuDetect.cpp emitter/WinCpuDetect.cpp emitter/x86emitter.cpp Darwin/DarwinThreads.cpp Darwin/DarwinMisc.cpp Darwin/DarwinSemaphore.cpp Linux/LnxHostSys.cpp Linux/LnxThreads.cpp Linux/LnxMisc.cpp Windows/WinThreads.cpp Windows/WinHostSys.cpp Windows/WinMisc.cpp ) # x86emitter headers target_sources(common PRIVATE AlignedMalloc.h Assertions.h boost_spsc_queue.hpp BitUtils.h ByteSwap.h Console.h CrashHandler.h DynamicLibrary.h Easing.h EnumOps.h Error.h FastJmp.h FileSystem.h General.h HashCombine.h HeterogeneousContainers.h Image.h LRUCache.h HeapArray.h HTTPDownloader.h MemorySettingsInterface.h MD5Digest.h MRCHelpers.h Path.h PrecompiledHeader.h ProgressCallback.h ReadbackSpinManager.h RedtapeWilCom.h RedtapeWindows.h ScopedGuard.h SettingsInterface.h SettingsWrapper.h StringUtil.h Timer.h TextureDecompress.h Threading.h ThreadPool.h TraceLog.h WAVWriter.h WindowInfo.h WrappedMemCopy.h emitter/implement/dwshift.h emitter/implement/group1.h emitter/implement/group2.h emitter/implement/group3.h emitter/implement/helpers.h emitter/implement/incdec.h emitter/implement/jmpcall.h emitter/implement/movs.h emitter/implement/simd_arithmetic.h emitter/implement/simd_comparisons.h emitter/implement/simd_helpers.h emitter/implement/simd_moremovs.h emitter/implement/simd_shufflepack.h emitter/implement/simd_templated_helpers.h emitter/implement/test.h emitter/implement/xchg.h emitter/instructions.h emitter/internal.h emitter/legacy_instructions.h emitter/legacy_internal.h emitter/legacy_types.h emitter/tools.h emitter/x86emitter.h emitter/x86types.h Darwin/DarwinMisc.h ) if(USE_VTUNE) target_link_libraries(common PUBLIC Vtune::Vtune) endif() if(WIN32) enable_language(ASM_MASM) target_sources(common PRIVATE FastJmp.asm) target_link_libraries(common PUBLIC WIL::WIL winmm) target_sources(common PRIVATE CrashHandler.cpp CrashHandler.h FastJmp.asm HTTPDownloaderWinHTTP.cpp HTTPDownloaderWinHTTP.h StackWalker.cpp StackWalker.h ) endif() if(APPLE) target_sources(common PRIVATE CocoaTools.mm CocoaTools.h ) target_compile_options(common PRIVATE -fobjc-arc) target_link_options(common PRIVATE -fobjc-link-runtime) target_link_libraries(common PRIVATE "-framework Foundation" "-framework IOKit" ) endif() if(DBUS_API) target_compile_definitions(common PRIVATE DBUS_API) find_package(PkgConfig REQUIRED) pkg_check_modules(DBUS REQUIRED dbus-1) target_include_directories(common PRIVATE ${DBUS_INCLUDE_DIRS}) target_link_libraries(common PRIVATE ${DBUS_LINK_LIBRARIES}) endif() if(X11_API AND TARGET PkgConfig::XRANDR) target_link_libraries(common PRIVATE PkgConfig::XRANDR) target_compile_definitions(common PRIVATE "HAS_XRANDR=1") endif() if (USE_GCC AND CMAKE_INTERPROCEDURAL_OPTIMIZATION) # GCC LTO doesn't work with asm statements set_source_files_properties(FastJmp.cpp PROPERTIES COMPILE_FLAGS -fno-lto) endif() if(NOT WIN32) # libcurl-based HTTPDownloader target_sources(common PRIVATE HTTPDownloaderCurl.cpp HTTPDownloaderCurl.h ) target_link_libraries(common PRIVATE CURL::libcurl) endif() if(UNIX AND NOT APPLE AND TARGET libbacktrace::libbacktrace) target_compile_definitions(common PRIVATE "HAS_LIBBACKTRACE=1") target_link_libraries(common PRIVATE libbacktrace::libbacktrace) endif() target_link_libraries(common PRIVATE ${LIBC_LIBRARIES} PNG::PNG jpgd ) target_link_libraries(common PUBLIC fmt::fmt fast_float ) fixup_file_properties(common) target_compile_features(common PUBLIC cxx_std_17) target_include_directories(common PUBLIC ../3rdparty/include ../) target_compile_definitions(common PUBLIC "${PCSX2_DEFS}") target_compile_options(common PRIVATE "${PCSX2_WARNINGS}") if(COMMAND target_precompile_headers) target_precompile_headers(common PRIVATE PrecompiledHeader.h) endif()