mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
860b76452f
cleanup: drop unused stuff
78 lines
2.6 KiB
CMake
78 lines
2.6 KiB
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
# uncomment next line if you want to build with GDB stub
|
|
# add_definitions(-DWITH_GDB_DEBUGGER)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(ASMJIT_STATIC TRUE)
|
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
message(STATUS "No build type selected, default to Release")
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
endif()
|
|
|
|
if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
message( FATAL_ERROR "RPCS3 can only be compiled on 64-bit platforms." )
|
|
endif()
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.1)
|
|
message( FATAL_ERROR "RPCS3 requires at least gcc-5.1." )
|
|
endif()
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 6.1)
|
|
message( FATAL_ERROR "RPCS3 can't be compiled with gcc-6.1, see #1691." )
|
|
endif()
|
|
|
|
find_program(CCACHE_FOUND ccache)
|
|
if (CCACHE_FOUND)
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
|
|
endif()
|
|
|
|
add_definitions(-DCMAKE_BUILD)
|
|
|
|
# We use libpng's static library and don't need to build the shared library and run the tests
|
|
set(PNG_SHARED OFF CACHE BOOL "Build shared lib." FORCE)
|
|
set(PNG_TESTS OFF CACHE BOOL "Build tests." FORCE)
|
|
|
|
# Select the version of libpng to use, default is builtin
|
|
if (NOT USE_SYSTEM_LIBPNG)
|
|
add_subdirectory( 3rdparty/libpng )
|
|
endif()
|
|
|
|
option(VULKAN_PREBUILT "" OFF)
|
|
|
|
# TODO: do real installation, including copying directory structure
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${PROJECT_BINARY_DIR}/bin")
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${PROJECT_BINARY_DIR}/bin")
|
|
add_subdirectory( Vulkan )
|
|
add_subdirectory( rpcs3 )
|
|
|
|
include_directories(3rdparty/hidapi/hidapi)
|
|
if(APPLE)
|
|
add_subdirectory(3rdparty/hidapi/mac)
|
|
#list(APPEND LIBS hidapi)
|
|
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
add_subdirectory(3rdparty/hidapi/linux)
|
|
elseif(MSVC)
|
|
add_subdirectory(3rdparty/hidapi/windows)
|
|
else()
|
|
add_subdirectory(3rdparty/hidapi/libusb)
|
|
#list(APPEND LIBS hidapi-libusb)
|
|
endif()
|
|
|
|
# Linux installation
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux|FreeBSD|OpenBSD")
|
|
# Install the application icon and menu item
|
|
install(FILES rpcs3/rpcs3.svg
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps)
|
|
install(FILES rpcs3/rpcs3.png
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps)
|
|
install(FILES rpcs3/rpcs3.desktop
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications)
|
|
# Install the binary
|
|
install(FILES "${PROJECT_BINARY_DIR}/bin/rpcs3"
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
|
PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) # i.e. 755
|
|
endif()
|