mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00

Some checks failed
Build macOS / build_macos (push) Has been cancelled
Build Android / build_android (apk) (push) Has been cancelled
Build Android / build_android (libretro) (push) Has been cancelled
Build Linux ARM32 / build_linux_arm32 (push) Has been cancelled
Build Linux ARM64 / build_linux_arm64 (push) Has been cancelled
Build Windows Psf / build_windows_psf (off, x86_64, Visual Studio 16 2019, installer64.nsi, x64) (push) Has been cancelled
Build Windows Psf / build_windows_psf (on, x86_64, Visual Studio 16 2019, installer64.nsi, x64) (push) Has been cancelled
Build Windows / build_windows (x86_32, Visual Studio 16 2019, installer32.nsi, win32_msvc2019, Win32) (push) Has been cancelled
Build Windows / build_windows (x86_64, Visual Studio 16 2019, installer64.nsi, win64_msvc2019_64, x64) (push) Has been cancelled
Check Format / run_clangformat (push) Has been cancelled
Build iOS / build_ios (push) Has been cancelled
Build JavaScript / build_js (push) Has been cancelled
Build Linux / build_linux (push) Has been cancelled
33 lines
836 B
CMake
33 lines
836 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../deps/Dependencies/cmake-modules
|
|
${CMAKE_MODULE_PATH}
|
|
)
|
|
include(Header)
|
|
|
|
project(app_shared)
|
|
|
|
if (NOT TARGET Framework)
|
|
add_subdirectory(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../Framework/build_cmake/Framework
|
|
${CMAKE_CURRENT_BINARY_DIR}/Framework
|
|
)
|
|
endif()
|
|
|
|
if(TARGET_PLATFORM_ANDROID OR TARGET_PLATFORM_IOS OR TARGET_PLATFORM_JS)
|
|
list(APPEND APP_SHARED_DEFINITIONS_LIST LOGGING_ENABLED=0)
|
|
endif()
|
|
|
|
set(COMMON_SRC_FILES
|
|
AppConfig.cpp
|
|
AppConfig.h
|
|
DefaultAppConfig.h
|
|
Log.cpp
|
|
Log.h
|
|
)
|
|
|
|
add_library(app_shared STATIC ${COMMON_SRC_FILES})
|
|
target_link_libraries(app_shared PUBLIC Framework)
|
|
target_include_directories(app_shared PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(app_shared PUBLIC ${APP_SHARED_DEFINITIONS_LIST})
|