2018-03-23 16:31:29 -06:00
|
|
|
add_library(common
|
2017-03-01 05:43:43 -07:00
|
|
|
Analytics.cpp
|
|
|
|
CDUtils.cpp
|
|
|
|
ColorUtil.cpp
|
2017-04-14 13:07:37 -06:00
|
|
|
CommonFuncs.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
Config/Config.cpp
|
2017-10-30 10:22:37 -06:00
|
|
|
Config/ConfigInfo.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
Config/Layer.cpp
|
2017-08-07 00:25:14 -06:00
|
|
|
Crypto/AES.cpp
|
|
|
|
Crypto/bn.cpp
|
|
|
|
Crypto/ec.cpp
|
2018-05-21 08:46:03 -06:00
|
|
|
Debug/MemoryPatches.cpp
|
2018-01-29 09:58:02 -07:00
|
|
|
Debug/Watches.cpp
|
2019-03-09 06:31:33 -07:00
|
|
|
DynamicLibrary.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
ENetUtil.cpp
|
2017-01-15 13:46:32 -07:00
|
|
|
File.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
FileSearch.cpp
|
|
|
|
FileUtil.cpp
|
2018-05-06 23:18:41 -06:00
|
|
|
FloatUtils.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
GekkoDisassembler.cpp
|
|
|
|
Hash.cpp
|
2017-06-12 09:17:05 -06:00
|
|
|
HttpRequest.cpp
|
2016-12-27 08:32:32 -07:00
|
|
|
Image.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
IniFile.cpp
|
|
|
|
JitRegister.cpp
|
2017-08-07 00:25:14 -06:00
|
|
|
Logging/LogManager.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
MathUtil.cpp
|
2019-01-29 15:05:51 -07:00
|
|
|
Matrix.cpp
|
2017-08-07 00:25:14 -06:00
|
|
|
MD5.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
MemArena.cpp
|
|
|
|
MemoryUtil.cpp
|
|
|
|
MsgHandler.cpp
|
|
|
|
NandPaths.cpp
|
|
|
|
Network.cpp
|
|
|
|
PcapFile.cpp
|
|
|
|
PerformanceCounter.cpp
|
|
|
|
Profiler.cpp
|
2017-10-27 17:42:25 -06:00
|
|
|
QoSSession.cpp
|
2018-05-21 07:48:17 -06:00
|
|
|
Random.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
SDCardUtil.cpp
|
2018-07-04 15:01:50 -06:00
|
|
|
SFMLHelper.cpp
|
2017-10-30 10:22:37 -06:00
|
|
|
SettingsHandler.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
StringUtil.cpp
|
|
|
|
SymbolDB.cpp
|
|
|
|
Thread.cpp
|
|
|
|
Timer.cpp
|
|
|
|
TraversalClient.cpp
|
2017-08-07 00:26:01 -06:00
|
|
|
UPnP.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
Version.cpp
|
|
|
|
)
|
2014-06-05 17:29:54 -06:00
|
|
|
|
2018-04-01 11:49:34 -06:00
|
|
|
target_link_libraries(common
|
|
|
|
PUBLIC
|
2018-03-23 16:31:29 -06:00
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
enet
|
|
|
|
${MBEDTLS_LIBRARIES}
|
2018-04-01 11:49:34 -06:00
|
|
|
|
|
|
|
PRIVATE
|
2018-04-16 10:37:40 -06:00
|
|
|
${CURL_LIBRARIES}
|
2018-04-01 11:49:34 -06:00
|
|
|
${ICONV_LIBRARIES}
|
2016-12-27 08:32:32 -07:00
|
|
|
png
|
2018-04-16 10:37:40 -06:00
|
|
|
${VTUNE_LIBRARIES}
|
2018-03-23 16:31:29 -06:00
|
|
|
)
|
2017-03-25 13:11:33 -06:00
|
|
|
|
2018-03-30 13:43:49 -06:00
|
|
|
if (APPLE)
|
|
|
|
target_link_libraries(common
|
|
|
|
PRIVATE
|
|
|
|
${APPKIT_LIBRARY}
|
|
|
|
${COREFOUNDATION_LIBRARY}
|
|
|
|
${IOK_LIBRARY}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2015-10-03 07:10:43 -06:00
|
|
|
if(ANDROID)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
2018-08-19 15:38:29 -06:00
|
|
|
AndroidAnalytics.cpp
|
2018-03-23 16:31:29 -06:00
|
|
|
Logging/ConsoleListenerDroid.cpp
|
|
|
|
)
|
2017-01-20 16:28:32 -07:00
|
|
|
elseif(WIN32)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
|
|
|
Logging/ConsoleListenerWin.cpp
|
|
|
|
)
|
2015-10-03 07:10:43 -06:00
|
|
|
else()
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
|
|
|
Logging/ConsoleListenerNix.cpp
|
|
|
|
)
|
2015-10-03 07:10:43 -06:00
|
|
|
endif()
|
|
|
|
|
2015-06-07 21:44:13 -06:00
|
|
|
if(_M_ARM_64)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
2017-03-01 05:43:43 -07:00
|
|
|
Arm64Emitter.cpp
|
|
|
|
ArmCPUDetect.cpp
|
|
|
|
GenericFPURoundMode.cpp
|
|
|
|
)
|
2014-06-05 19:33:35 -06:00
|
|
|
else()
|
2017-03-01 05:43:43 -07:00
|
|
|
if(_M_X86) #X86
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
2018-06-21 04:41:01 -06:00
|
|
|
x64ABI.cpp
|
|
|
|
x64Emitter.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
x64FPURoundMode.cpp
|
|
|
|
x64CPUDetect.cpp
|
|
|
|
)
|
|
|
|
else() # Generic
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
2017-03-01 05:43:43 -07:00
|
|
|
GenericFPURoundMode.cpp
|
|
|
|
GenericCPUDetect.cpp
|
|
|
|
)
|
|
|
|
endif()
|
2013-02-26 12:49:00 -07:00
|
|
|
endif()
|
2010-11-01 09:47:02 -06:00
|
|
|
|
2015-09-18 10:40:00 -06:00
|
|
|
# OpenGL Interface
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
2017-03-01 05:43:43 -07:00
|
|
|
GL/GLUtil.cpp
|
|
|
|
GL/GLExtensions/GLExtensions.cpp
|
2018-10-03 07:02:45 -06:00
|
|
|
GL/GLContext.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
)
|
2015-09-18 10:40:00 -06:00
|
|
|
|
2018-10-14 07:17:31 -06:00
|
|
|
if(ENABLE_EGL AND EGL_FOUND)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE GL/GLInterface/EGL.cpp)
|
2017-03-01 05:43:43 -07:00
|
|
|
if(ANDROID)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE GL/GLInterface/EGLAndroid.cpp)
|
2018-10-14 07:17:31 -06:00
|
|
|
elseif(ENABLE_X11 AND X11_FOUND)
|
|
|
|
target_sources(common PRIVATE GL/GLInterface/EGLX11.cpp)
|
2017-03-01 05:43:43 -07:00
|
|
|
endif()
|
2018-10-14 07:17:31 -06:00
|
|
|
target_include_directories(common PRIVATE ${EGL_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(common PUBLIC ${EGL_LIBRARIES})
|
2015-09-18 10:40:00 -06:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WIN32)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE
|
|
|
|
CompatPatches.cpp
|
|
|
|
GL/GLInterface/WGL.cpp
|
|
|
|
)
|
2015-09-18 10:40:00 -06:00
|
|
|
elseif(APPLE)
|
2018-03-23 16:31:29 -06:00
|
|
|
target_sources(common PRIVATE GL/GLInterface/AGL.mm)
|
2018-10-14 07:17:31 -06:00
|
|
|
elseif(ENABLE_X11 AND X11_FOUND)
|
2018-10-03 07:03:36 -06:00
|
|
|
target_sources(common PRIVATE
|
|
|
|
GL/GLX11Window.cpp
|
|
|
|
GL/GLInterface/GLX.cpp)
|
|
|
|
|
|
|
|
# GLX has a hard dependency on libGL.
|
|
|
|
# Make sure to link to it if using GLX.
|
|
|
|
target_link_libraries(common PUBLIC ${OPENGL_LIBRARIES})
|
2015-09-18 10:40:00 -06:00
|
|
|
endif()
|
|
|
|
|
2018-07-02 11:01:16 -06:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
2018-03-23 16:31:29 -06:00
|
|
|
target_link_libraries(common PUBLIC dl rt)
|
2015-09-18 10:40:00 -06:00
|
|
|
endif()
|
|
|
|
|
2017-08-14 16:13:49 -06:00
|
|
|
if(USE_UPNP)
|
|
|
|
target_link_libraries(common PRIVATE Miniupnpc::miniupnpc)
|
|
|
|
endif()
|
|
|
|
|
2017-08-14 15:09:32 -06:00
|
|
|
if(OPROFILE_FOUND)
|
2018-04-13 17:32:11 -06:00
|
|
|
target_link_libraries(common PRIVATE OProfile::OProfile)
|
2017-08-14 15:09:32 -06:00
|
|
|
endif()
|
|
|
|
|
2017-01-20 15:03:59 -07:00
|
|
|
if(UNIX)
|
2017-03-01 05:43:43 -07:00
|
|
|
# Posix networking code needs to be fixed for Windows
|
|
|
|
add_executable(traversal_server TraversalServer.cpp)
|
2018-05-21 07:48:17 -06:00
|
|
|
target_link_libraries(traversal_server PRIVATE common)
|
2018-03-07 23:10:17 -07:00
|
|
|
if(SYSTEMD_FOUND)
|
2018-06-08 15:40:42 -06:00
|
|
|
target_link_libraries(traversal_server PRIVATE ${SYSTEMD_LIBRARIES})
|
2018-03-07 23:10:17 -07:00
|
|
|
endif()
|
2017-06-15 22:26:40 -06:00
|
|
|
elseif(WIN32)
|
|
|
|
target_link_libraries(common PRIVATE "-INCLUDE:enableCompatPatches")
|
2017-01-20 15:03:59 -07:00
|
|
|
endif()
|