mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
a710558c6b
Contains minimal account creation and login Considerations: - migrated status-go wrapper and login code from the fix/cpp-structure (241eec) - Minimal refactoring and changes at the moment. Expect further refactoring follow up to reach the desired state. - Fix missing keychain initialization - Fix accounts DB initialization call done by startup -> Controller.openedAccounts -> status-go.OpenAccounts calls - Small refactoring and todos for other steps - fix SignalsManager - fix async access to dereferenced status-go memory from SignalsManager - fix SignalsManager not starting when registering - finish dev end to end test for create account and login - small improvements and added TODOs for future work - add onboarding test helpers and start messaging test - Refactoring towards Login UI integration Closes: #5909 Closes: #6028
18 lines
580 B
Python
18 lines
580 B
Python
from conans import ConanFile, CMake
|
|
|
|
|
|
class StatusDesktop(ConanFile):
|
|
name = "status-desktop"
|
|
settings = "os", "compiler", "build_type", "arch"
|
|
|
|
requires = "gtest/1.11.0", "nlohmann_json/3.10.5" # "fruit/3.6.0",
|
|
|
|
# cmake_find_package and cmake_find_package_multi should be substituted with CMakeDeps
|
|
# as soon as Conan 2.0 is released and all conan-center packages are adapted
|
|
generators = "CMakeToolchain", "cmake_find_package", "cmake_find_package_multi"
|
|
|
|
def build(self):
|
|
cmake = CMake(self)
|
|
cmake.configure()
|
|
cmake.build()
|