File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 10
10
with :
11
11
submodules : true
12
12
- name : Install Dependencies
13
- run : sudo apt-get update && sudo apt-get install cmake clang ninja-build libx11-dev libgtk-3-dev libssl-dev webkit2gtk-driver -y --no-install-recommends
13
+ run : sudo apt-get update && sudo apt-get install cmake clang ninja-build libx11-dev libgtk-3-dev libssl-dev webkit2gtk-driver libsecret-1-dev libc6-dev libsoup2.4-dev libxtst-dev libwebkit2gtk-4.0-dev -y --no-install-recommends
14
14
- name : Build
15
15
run : mkdir -p build; cd build; cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release .. && cmake --build . --config release --target install
16
16
- name : Compress App
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE INTERNAL "")
15
15
if (UNIX AND NOT APPLE )
16
16
set (LINUX TRUE CACHE INTERNAL "" )
17
17
endif ()
18
+ set (CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /wxWidgets/build/cmake/modules" CACHE INTERNAL "" )
19
+ message ("module path = ${CMAKE_MODULE_PATH} " )
18
20
19
21
file (GLOB source "source/*.cpp" "source/*.hpp" "source/*.h" )
20
22
add_executable ("${PROJECT_NAME} " WIN32 ${source} "source/wxmac.icns" "source/windows.rc" )
You can’t perform that action at this time.
0 commit comments