File tree 4 files changed +6
-10
lines changed
4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
15
15
- name : 签出仓库
16
- uses : actions/checkout@v3.3.0
16
+ uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0
19
19
ref : master
Original file line number Diff line number Diff line change 12
12
steps :
13
13
14
14
- name : 签出仓库
15
- uses : actions/checkout@v3.3.0
15
+ uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
18
ref : master
Original file line number Diff line number Diff line change @@ -36,9 +36,5 @@ app.*.symbols
36
36
# Obfuscation related
37
37
app. * .map.json
38
38
39
- # Windows build
40
- windows /sqlite3.zip
41
- windows /sqlite3.dll
42
-
43
39
# secret
44
40
.env
Original file line number Diff line number Diff line change @@ -111,14 +111,14 @@ install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
111
111
message ("checking sqlite3.dll" )
112
112
find_file (Sqlite sqlite3.dll PATHS "${INSTALL_BUNDLE_LIB_DIR} " )
113
113
if (NOT Sqlite)
114
- message ("sqlite3.dll not found, trying to find zip file" )
115
- find_file (SqliteZip sqlite3.zip PATHS "${CMAKE_CURRENT_SOURCE_DIR } " )
114
+ message ("sqlite3.dll not found, trying to find zip file in ${PROJECT_BUILD_DIR} " )
115
+ find_file (SqliteZip sqlite3.zip PATHS "${PROJECT_BUILD_DIR } " )
116
116
if (NOT SqliteZip)
117
117
message ("sqlite3.zip not found, downloading" )
118
- file (DOWNLOAD "https://www.sqlite.org/2024/sqlite-dll-win-x64-3450200.zip" "${CMAKE_CURRENT_SOURCE_DIR } /sqlite3.zip" )
118
+ file (DOWNLOAD "https://www.sqlite.org/2024/sqlite-dll-win-x64-3450200.zip" "${PROJECT_BUILD_DIR } /sqlite3.zip" )
119
119
endif ()
120
120
message ("extracting sqlite3.dll" )
121
- execute_process (COMMAND ${CMAKE_COMMAND} -E tar xvf sqlite3.zip sqlite3.dll WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR } )
121
+ execute_process (COMMAND ${CMAKE_COMMAND} -E tar xvf sqlite3.zip sqlite3.dll WORKING_DIRECTORY ${PROJECT_BUILD_DIR } )
122
122
endif ()
123
123
message ("installing sqlite3.dll" )
124
124
install (FILES "${CMAKE_CURRENT_SOURCE_DIR} /sqlite3.dll" DESTINATION "${INSTALL_BUNDLE_LIB_DIR} " COMPONENT Runtime)
You can’t perform that action at this time.
0 commit comments