pcsx2/common/CMakeLists.txt

231 lines
5.2 KiB
CMake
Raw Normal View History

# 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)
2021-09-02 16:36:36 +00:00
add_library(common)
2021-09-02 16:36:36 +00:00
# x86emitter sources
target_sources(common PRIVATE
2021-09-03 10:43:33 +00:00
AlignedMalloc.cpp
VirtualMemory.cpp
2021-09-02 16:36:36 +00:00
EventSource.inl
SafeArray.inl
Console.cpp
EventSource.cpp
Exceptions.cpp
FastFormatString.cpp
2021-09-21 10:05:20 +00:00
FastJmp.cpp
2021-07-08 13:35:21 +00:00
GL/Context.cpp
2021-12-17 13:11:52 +00:00
GL/Program.cpp
2021-12-17 13:18:24 +00:00
GL/ShaderCache.cpp
2021-07-08 13:35:21 +00:00
GL/StreamBuffer.cpp
2021-09-21 09:52:13 +00:00
FileSystem.cpp
IniInterface.cpp
Mutex.cpp
Misc.cpp
2021-10-21 06:57:10 +00:00
MD5Digest.cpp
PathUtils.cpp
PrecompiledHeader.cpp
Perf.cpp
2021-09-14 09:09:09 +00:00
ProgressCallback.cpp
pxStreams.cpp
pxTranslate.cpp
RwMutex.cpp
2021-09-02 16:36:36 +00:00
Semaphore.cpp
SettingsWrapper.cpp
StringHelpers.cpp
2021-09-14 09:09:09 +00:00
StringUtil.cpp
2021-09-14 09:09:09 +00:00
Timer.cpp
ThreadTools.cpp
2021-07-18 03:11:33 +00:00
WindowInfo.cpp
2021-09-02 16:36:36 +00:00
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
2021-09-03 10:43:33 +00:00
emitter/LnxCpuDetect.cpp
2021-09-02 16:36:36 +00:00
emitter/WinCpuDetect.cpp
emitter/x86emitter.cpp
x86/MemcpyFast.cpp
2021-09-03 10:43:33 +00:00
Darwin/DarwinThreads.cpp
Darwin/DarwinMisc.cpp
Darwin/DarwinSemaphore.cpp
Linux/LnxHostSys.cpp
Linux/LnxThreads.cpp
Linux/LnxMisc.cpp
2021-09-02 16:36:36 +00:00
Windows/WinThreads.cpp
Windows/WinHostSys.cpp
2021-11-06 06:53:01 +00:00
Windows/WinMisc.cpp
)
2021-09-02 16:36:36 +00:00
# x86emitter headers
target_sources(common PRIVATE
2021-10-16 00:42:31 +00:00
Align.h
2021-11-14 01:21:17 +00:00
AlignedMalloc.h
2021-09-02 16:36:36 +00:00
Assertions.h
boost_spsc_queue.hpp
Console.h
Dependencies.h
EventSource.h
Exceptions.h
2021-09-21 10:05:20 +00:00
FastJmp.h
2021-09-21 09:52:13 +00:00
FileSystem.h
2021-09-02 16:36:36 +00:00
General.h
2021-07-08 13:35:21 +00:00
GL/Context.h
2021-12-17 13:11:52 +00:00
GL/Program.h
2021-12-17 13:18:24 +00:00
GL/ShaderCache.h
2021-07-08 13:35:21 +00:00
GL/StreamBuffer.h
2021-12-20 13:48:13 +00:00
HashCombine.h
2021-09-02 16:36:36 +00:00
MemcpyFast.h
MemsetFast.inl
2021-10-21 06:57:10 +00:00
MD5Digest.h
2021-09-02 16:36:36 +00:00
Path.h
PageFaultSource.h
PrecompiledHeader.h
2021-09-14 09:09:09 +00:00
ProgressCallback.h
2021-09-02 16:36:36 +00:00
pxForwardDefs.h
pxStreams.h
RedtapeWindows.h
RwMutex.h
SafeArray.h
2021-10-15 23:57:50 +00:00
ScopedGuard.h
2021-09-02 16:36:36 +00:00
ScopedPtrMT.h
SettingsInterface.h
SettingsWrapper.h
2021-09-02 16:36:36 +00:00
StringHelpers.h
2021-09-14 09:09:09 +00:00
StringUtil.h
2021-09-14 09:09:09 +00:00
Timer.h
2021-09-02 16:36:36 +00:00
Threading.h
TraceLog.h
2021-07-18 03:11:33 +00:00
WindowInfo.h
2021-09-02 16:36:36 +00:00
wxBaseTools.h
emitter/cpudetect_internal.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
2021-11-06 06:53:01 +00:00
)
if(USE_VULKAN)
target_link_libraries(common PUBLIC
Vulkan-Headers glslang
)
target_sources(common PRIVATE
Vulkan/ShaderCache.cpp
Vulkan/Texture.cpp
Vulkan/Loader.cpp
Vulkan/ShaderCompiler.cpp
Vulkan/Util.cpp
Vulkan/SwapChain.cpp
Vulkan/StreamBuffer.cpp
Vulkan/Context.cpp
Vulkan/Builders.cpp
Vulkan/vk_mem_alloc.cpp
Vulkan/Context.h
Vulkan/Texture.h
Vulkan/ShaderCompiler.h
Vulkan/SwapChain.h
Vulkan/Builders.h
Vulkan/StreamBuffer.h
Vulkan/ShaderCache.h
Vulkan/EntryPoints.h
Vulkan/Loader.h
Vulkan/Util.h
)
2021-11-06 06:53:01 +00:00
endif()
2021-08-21 21:36:01 +00:00
if(USE_VTUNE)
2021-09-02 16:36:36 +00:00
target_link_libraries(common PUBLIC Vtune::Vtune)
2021-08-21 21:36:01 +00:00
endif()
2021-09-02 16:36:36 +00:00
if(WIN32)
2021-09-21 10:05:20 +00:00
enable_language(ASM_MASM)
target_sources(common PRIVATE FastJmp.asm)
2021-09-02 16:36:36 +00:00
target_link_libraries(common PUBLIC pthreads4w Winmm.lib)
2021-07-08 13:35:21 +00:00
target_sources(common PRIVATE
FastJmp.asm
GL/ContextWGL.cpp
GL/ContextWGL.h
)
target_link_libraries(common PUBLIC pthreads4w Winmm.lib opengl32.lib)
elseif(APPLE)
target_sources(common PRIVATE
GL/ContextAGL.mm
GL/ContextAGL.h
)
set_source_files_properties(GL/ContextAGL.mm PROPERTIES SKIP_PRECOMPILE_HEADERS ON)
target_compile_options(common PUBLIC -fobjc-arc)
target_link_options(common PUBLIC -fobjc-link-runtime)
else()
if(X11_API OR WAYLAND_API)
target_sources(common PRIVATE
GL/ContextEGL.cpp
GL/ContextEGL.h
)
target_link_libraries(common PRIVATE PkgConfig::EGL)
endif()
if(X11_API)
target_sources(common PRIVATE
GL/ContextEGLX11.cpp
GL/ContextEGLX11.h
)
2021-11-06 06:53:01 +00:00
target_compile_definitions(common PUBLIC "VULKAN_USE_X11=1")
2021-07-08 13:35:21 +00:00
if(TARGET PkgConfig::XRANDR)
target_link_libraries(common PRIVATE PkgConfig::XRANDR)
target_compile_definitions(common PRIVATE "HAS_XRANDR=1")
endif()
endif()
if(WAYLAND_API)
target_sources(common PRIVATE
GL/ContextEGLWayland.cpp
GL/ContextEGLWayland.h
)
2021-11-06 06:53:01 +00:00
target_link_libraries(common PRIVATE ${WAYLAND_EGL_LIBRARIES})
target_compile_definitions(common PUBLIC "VULKAN_USE_WAYLAND=1")
2021-07-08 13:35:21 +00:00
endif()
2021-09-02 16:36:36 +00:00
endif()
2021-10-24 20:11:38 +00:00
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()
2021-07-08 13:35:21 +00:00
target_link_libraries(common PRIVATE ${LIBC_LIBRARIES} PUBLIC wxWidgets::all glad)
2021-09-02 16:36:36 +00:00
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)
2021-09-02 16:36:36 +00:00
target_precompile_headers(common PRIVATE PrecompiledHeader.h)
endif()