2023-12-29 11:18:03 +00:00
function ( detect_operating_system )
# LINUX wasn't added until CMake 3.25.
if ( CMAKE_VERSION VERSION_LESS 3.25.0 AND CMAKE_SYSTEM_NAME MATCHES "Linux" )
set ( LINUX TRUE PARENT_SCOPE )
endif ( )
2021-07-04 05:24:21 +00:00
if ( WIN32 )
2023-12-29 11:18:03 +00:00
message ( STATUS "Building for Windows." )
elseif ( APPLE AND NOT IOS )
message ( STATUS "Building for MacOS." )
elseif ( LINUX )
message ( STATUS "Building for Linux." )
elseif ( BSD )
message ( STATUS "Building for *BSD." )
else ( )
message ( FATAL_ERROR "Unsupported platform." )
endif ( )
endfunction ( )
function ( detect_compiler )
if ( MSVC AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
set ( USE_CLANG_CL TRUE PARENT_SCOPE )
2023-12-30 07:33:37 +00:00
set ( IS_SUPPORTED_COMPILER TRUE PARENT_SCOPE )
2023-12-29 11:18:03 +00:00
message ( STATUS "Building with Clang-CL." )
elseif ( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang" )
set ( USE_CLANG TRUE PARENT_SCOPE )
2023-12-30 07:33:37 +00:00
set ( IS_SUPPORTED_COMPILER TRUE PARENT_SCOPE )
2023-12-29 11:18:03 +00:00
message ( STATUS "Building with Clang/LLVM." )
elseif ( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
set ( USE_GCC TRUE PARENT_SCOPE )
2023-12-30 07:33:37 +00:00
set ( IS_SUPPORTED_COMPILER FALSE PARENT_SCOPE )
message ( STATUS "Building with GNU GCC." )
2023-12-29 11:18:03 +00:00
elseif ( MSVC )
2023-12-30 07:33:37 +00:00
set ( IS_SUPPORTED_COMPILER TRUE PARENT_SCOPE )
2023-12-29 11:18:03 +00:00
message ( STATUS "Building with MSVC." )
else ( )
message ( FATAL_ERROR "Unknown compiler: ${CMAKE_CXX_COMPILER_ID}" )
2021-07-04 05:24:21 +00:00
endif ( )
2014-12-28 06:41:57 +00:00
endfunction ( )
2013-06-28 10:43:50 +00:00
2020-05-24 06:19:47 +00:00
function ( get_git_version_info )
2021-07-04 05:24:21 +00:00
set ( PCSX2_WC_TIME 0 )
set ( PCSX2_GIT_REV "" )
2021-10-18 04:09:42 +00:00
set ( PCSX2_GIT_TAG "" )
2022-05-12 15:54:02 +00:00
set ( PCSX2_GIT_HASH "" )
2021-07-04 05:24:21 +00:00
if ( GIT_FOUND AND EXISTS ${ PROJECT_SOURCE_DIR } /.git )
EXECUTE_PROCESS ( WORKING_DIRECTORY ${ PROJECT_SOURCE_DIR } COMMAND ${ GIT_EXECUTABLE } show -s --format=%ci HEAD
O U T P U T _ V A R I A B L E P C S X 2 _ W C _ T I M E
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
# Output: "YYYY-MM-DD HH:MM:SS +HHMM" (last part is time zone, offset from UTC)
string ( REGEX REPLACE "[%:\\-]" "" PCSX2_WC_TIME "${PCSX2_WC_TIME}" )
string ( REGEX REPLACE "([0-9]+) ([0-9]+).*" "\\1\\2" PCSX2_WC_TIME "${PCSX2_WC_TIME}" )
2016-11-08 21:44:39 +00:00
2021-08-12 04:18:21 +00:00
EXECUTE_PROCESS ( WORKING_DIRECTORY ${ PROJECT_SOURCE_DIR } COMMAND ${ GIT_EXECUTABLE } describe
2021-07-04 05:24:21 +00:00
O U T P U T _ V A R I A B L E P C S X 2 _ G I T _ R E V
2021-08-12 04:18:21 +00:00
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
E R R O R _ Q U I E T )
2021-10-18 04:09:42 +00:00
EXECUTE_PROCESS ( WORKING_DIRECTORY ${ PROJECT_SOURCE_DIR } COMMAND ${ GIT_EXECUTABLE } tag --points-at HEAD
O U T P U T _ V A R I A B L E P C S X 2 _ G I T _ T A G
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
E R R O R _ Q U I E T )
2022-05-12 15:54:02 +00:00
EXECUTE_PROCESS ( WORKING_DIRECTORY ${ PROJECT_SOURCE_DIR } COMMAND ${ GIT_EXECUTABLE } rev-parse HEAD
O U T P U T _ V A R I A B L E P C S X 2 _ G I T _ H A S H
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
E R R O R _ Q U I E T )
2021-07-04 05:24:21 +00:00
endif ( )
2022-04-11 08:14:48 +00:00
if ( "${PCSX2_GIT_TAG}" MATCHES "^v([0-9]+)\\.([0-9]+)\\.([0-9]+)$" )
string ( REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" PCSX2_VERSION_LONG "${PCSX2_GIT_TAG}" )
string ( REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" PCSX2_VERSION_SHORT "${PCSX2_GIT_TAG}" )
elseif ( PCSX2_GIT_REV )
2021-07-04 05:24:21 +00:00
set ( PCSX2_VERSION_LONG "${PCSX2_GIT_REV}" )
string ( REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?(-[a-z][a-z0-9]+)?" PCSX2_VERSION_SHORT "${PCSX2_VERSION_LONG}" )
else ( )
set ( PCSX2_VERSION_LONG "Unknown (git unavailable)" )
set ( PCSX2_VERSION_SHORT "Unknown" )
endif ( )
if ( "${PCSX2_WC_TIME}" STREQUAL "" )
set ( PCSX2_WC_TIME 0 )
endif ( )
2020-05-24 06:19:47 +00:00
2021-07-04 05:24:21 +00:00
set ( PCSX2_WC_TIME "${PCSX2_WC_TIME}" PARENT_SCOPE )
set ( PCSX2_GIT_REV "${PCSX2_GIT_REV}" PARENT_SCOPE )
2021-11-01 22:32:22 +00:00
set ( PCSX2_GIT_TAG "${PCSX2_GIT_TAG}" PARENT_SCOPE )
2022-05-12 15:54:02 +00:00
set ( PCSX2_GIT_HASH "${PCSX2_GIT_HASH}" PARENT_SCOPE )
2021-07-04 05:24:21 +00:00
set ( PCSX2_VERSION_LONG "${PCSX2_VERSION_LONG}" PARENT_SCOPE )
set ( PCSX2_VERSION_SHORT "${PCSX2_VERSION_SHORT}" PARENT_SCOPE )
2020-05-24 06:19:47 +00:00
endfunction ( )
function ( write_svnrev_h )
2021-10-18 04:09:42 +00:00
if ( PCSX2_GIT_TAG )
2022-01-21 14:05:13 +00:00
if ( "${PCSX2_GIT_TAG}" MATCHES "^v([0-9]+)\\.([0-9]+)\\.([0-9]+)$" )
file ( WRITE ${ CMAKE_BINARY_DIR } /common/include/svnrev.h
" #define SVN_REV ${PCSX2_WC_TIME}ll\n"
" #define GIT_TAG \"${PCSX2_GIT_TAG}\"\n"
" #define GIT_TAGGED_COMMIT 1\n"
" #define GIT_TAG_HI ${CMAKE_MATCH_1}\n"
" #define GIT_TAG_MID ${CMAKE_MATCH_2}\n"
" #define GIT_TAG_LO ${CMAKE_MATCH_3}\n"
" #define GIT_REV \"\"\n"
2022-05-12 15:54:02 +00:00
" #define GIT_HASH \"${PCSX2_GIT_HASH}\"\n"
2022-01-21 14:05:13 +00:00
)
else ( )
file ( WRITE ${ CMAKE_BINARY_DIR } /common/include/svnrev.h
" #define SVN_REV ${PCSX2_WC_TIME}ll\n"
" #define GIT_TAG \"${PCSX2_GIT_TAG}\"\n"
" #define GIT_TAGGED_COMMIT 1\n"
" #define GIT_REV \"\"\n"
2022-05-12 15:54:02 +00:00
" #define GIT_HASH \"${PCSX2_GIT_HASH}\"\n"
2022-01-21 14:05:13 +00:00
)
endif ( )
2021-10-18 04:09:42 +00:00
else ( )
2022-01-21 14:05:13 +00:00
file ( WRITE ${ CMAKE_BINARY_DIR } /common/include/svnrev.h
" #define SVN_REV ${PCSX2_WC_TIME}ll\n"
" #define GIT_TAG \"${PCSX2_GIT_TAG}\"\n"
" #define GIT_TAGGED_COMMIT 0\n"
" #define GIT_REV \"${PCSX2_GIT_REV}\"\n"
2022-05-12 15:54:02 +00:00
" #define GIT_HASH \"${PCSX2_GIT_HASH}\"\n"
2022-01-21 14:05:13 +00:00
)
2021-10-18 04:09:42 +00:00
endif ( )
2013-06-28 10:43:50 +00:00
endfunction ( )
2013-07-06 09:42:46 +00:00
2014-03-30 14:25:11 +00:00
function ( check_no_parenthesis_in_path )
2021-07-04 05:24:21 +00:00
if ( "${CMAKE_BINARY_DIR}" MATCHES "[()]" OR "${CMAKE_SOURCE_DIR}" MATCHES "[()]" )
message ( FATAL_ERROR "Your path contains some parenthesis. Unfortunately Cmake doesn't support them correctly.\nPlease rename your directory to avoid '(' and ')' characters\n" )
endif ( )
2014-03-30 14:25:11 +00:00
endfunction ( )
2014-08-04 16:08:00 +00:00
2021-04-17 20:30:03 +00:00
# Makes an imported target if it doesn't exist. Useful for when find scripts from older versions of cmake don't make the targets you need
function ( make_imported_target_if_missing target lib )
if ( ${ lib } _FOUND AND NOT TARGET ${ target } )
add_library ( _ ${ lib } INTERFACE )
target_link_libraries ( _ ${ lib } INTERFACE "${${lib}_LIBRARIES}" )
target_include_directories ( _ ${ lib } INTERFACE "${${lib}_INCLUDE_DIRS}" )
add_library ( ${ target } ALIAS _ ${ lib } )
endif ( )
endfunction ( )
# like add_library(new ALIAS old) but avoids add_library cannot create ALIAS target "new" because target "old" is imported but not globally visible. on older cmake
function ( alias_library new old )
string ( REPLACE "::" "" library_no_namespace ${ old } )
2022-05-22 03:28:06 +00:00
if ( NOT TARGET _alias_ ${ library_no_namespace } )
add_library ( _alias_ ${ library_no_namespace } INTERFACE )
target_link_libraries ( _alias_ ${ library_no_namespace } INTERFACE ${ old } )
endif ( )
2021-04-17 20:30:03 +00:00
add_library ( ${ new } ALIAS _alias_ ${ library_no_namespace } )
endfunction ( )
2021-05-07 22:35:36 +00:00
function ( source_groups_from_vcxproj_filters file )
file ( READ "${file}" filecontent )
get_filename_component ( parent "${file}" DIRECTORY )
if ( parent STREQUAL "" )
set ( parent "." )
endif ( )
set ( regex "<[^ ]+ Include=\" ( [^\ "]+)\" >[ \t\r\n]+<Filter>([^<]+)<\\/Filter>[ \t\r\n]+<\\/[^ >]+> " )
string ( REGEX MATCHALL "${regex}" filterstrings "${filecontent}" )
foreach ( filterstring IN LISTS filterstrings )
string ( REGEX REPLACE "${regex}" "\\1" path "${filterstring}" )
string ( REGEX REPLACE "${regex}" "\\2" group "${filterstring}" )
source_group ( "${group}" FILES "${parent}/${path}" )
endforeach ( )
endfunction ( )
2022-05-22 03:28:06 +00:00
2023-10-31 04:08:02 +00:00
# Extracts a translation with the given type ("source" or "translation") from the given category of the given ts file
# (If there's multiple strings under the same category, which one it extracts is implementation defined. Just don't do it.)
function ( extract_translation_from_ts file type category output )
file ( READ "${file}" filecontent )
# Don't you love it when the best parser your language has to offer is regex?
set ( regex_search "(<[^\\/>]+>[^<>]+<\\/[^>\\/]+>|<\\/?context>)" )
set ( regex_extract "<[^\\/>]+>([^<>]+)<\\/([^>\\/]+)>" )
string ( REGEX MATCHALL "${regex_search}" pieces "${filecontent}" )
foreach ( piece IN LISTS pieces )
if ( piece STREQUAL "<context>" )
set ( found "" )
set ( name_match FALSE )
elseif ( piece STREQUAL "</context>" )
if ( name_match )
set ( ${ output } "${found}" PARENT_SCOPE )
break ( )
endif ( )
else ( )
string ( REGEX REPLACE "${regex_extract}" "\\1" content "${piece}" )
string ( REGEX REPLACE "${regex_extract}" "\\2" tag "${piece}" )
if ( tag STREQUAL "name" AND content STREQUAL "${category}" )
set ( name_match TRUE )
endif ( )
if ( tag STREQUAL "${type}" )
set ( found "${content}" )
endif ( )
endif ( )
endforeach ( )
endfunction ( )
2022-05-25 21:43:11 +00:00
function ( fixup_file_properties target )
get_target_property ( SOURCES ${ target } SOURCES )
if ( APPLE )
foreach ( source IN LISTS SOURCES )
# Set the right file types for .inl files in Xcode
if ( "${source}" MATCHES "\\.(inl|h)$" )
set_source_files_properties ( "${source}" PROPERTIES XCODE_EXPLICIT_FILE_TYPE sourcecode.cpp.h )
endif ( )
# CMake makefile and ninja generators will attempt to share one PCH for both cpp and mm files
# That's not actually OK
if ( "${source}" MATCHES "\\.mm$" )
set_source_files_properties ( "${source}" PROPERTIES SKIP_PRECOMPILE_HEADERS ON )
endif ( )
endforeach ( )
endif ( )
endfunction ( )
2023-08-26 03:25:24 +00:00
function ( disable_compiler_warnings_for_target target )
if ( MSVC )
target_compile_options ( ${ target } PRIVATE "/W0" )
else ( )
target_compile_options ( ${ target } PRIVATE "-w" )
endif ( )
endfunction ( )