Skip to content

Commit 3e105a5

Browse files
committed
windows上使用静态编译
1 parent 837a26e commit 3e105a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
mkdir build
2424
cd build
25-
cmake .. ${{ matrix.cmake_arch }} -G "Visual Studio 17 2022"
25+
cmake .. ${{ matrix.cmake_arch }} -G "Visual Studio 17 2022" -DCMAKE_USER_MAKE_RULES_OVERRIDE="${{ github.workspace }}/cmake/flags_override.cmake"
2626
cmake --build . --config RelWithDebInfo
2727
cmake --install . --config RelWithDebInfo --prefix ${{ github.workspace }}/artifact/
2828
- name: Build-linux

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ elseif(${EMMY_LUA_VERSION} STREQUAL "jit")
2626
#add_definitions(-DEMMY_LUA_JIT_SUPPORT_LUA_SETFUNCS)
2727
endif()
2828

29-
add_definitions(-DEMMY_CORE_VERSION="1.2.8")
29+
add_definitions(-DEMMY_CORE_VERSION="1.2.9")
3030

3131
if(EMMY_USE_LUA_SOURCE)
3232
add_definitions(-DEMMY_USE_LUA_SOURCE)

0 commit comments

Comments
 (0)