mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
37ab1a5513
Linux dockerized build and AppDir generation for compilation errors Also added AppImage TODOs, basic setup for MacOS and Windows but they still need work to have at least validation running Temporary disable CPP windows/mac until limitations are addressed in a follow up commit Extra: add build configuration fixes for rest of the platforms closes: #5998
7 lines
247 B
CMake
7 lines
247 B
CMake
if(WIN32)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/platform_specific/windows.cmake)
|
|
elseif(APPLE)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/platform_specific/macos.cmake)
|
|
else()
|
|
include(${CMAKE_CURRENT_LIST_DIR}/platform_specific/linux.cmake)
|
|
endif() |