Replies: 1 comment 2 replies
-
|
Hi! I've never been able to verify any Windows + arm64 build so it might not work out of the box (I do not have the hardware for testing it properly), but I can make a some comments and clarifications based on what you described:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm on Windows arm64, using the MSYS2 clangarm64 kit. I successfully compiled eepp and all the examples.
Since I'm completely lost in premake (if there's something like the --prefix option), I manually copied the following:
Now I wanted to rebuild the UI-Hello_World example in CLion using cmake.
The project compiled fine, but when I ran the exe the window did show up for a short time (without content) then shut down. So, certainly I'm missing something. Here's my CMakeLists.txt file:
cmake_minimum_required(VERSION 4.1)
project(UI_HelloWorld)
set(CMAKE_CXX_STANDARD 20)
add_executable(UI_HelloWorld main.cpp)
target_link_libraries(UI_HelloWorld PRIVATE
eepp
stdc++
pthread
)
target_link_options(UI_HelloWorld PRIVATE
-mwindows
-s
)
Either I did something terribly wrong when installing eepp into /clangarm64 or my CMakeLists.txt is incomplete.
Please guide me into the right direction :)
Beta Was this translation helpful? Give feedback.
All reactions