Skip to content

Commit

Permalink
fix: Rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
Yushu2606 committed Oct 19, 2023
1 parent dd70a67 commit 0b2fc89
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
- name: Upload Artifact
uses: actions/[email protected]
with:
path: build/libnative.so
path: build/liblayer.so
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
with:
prerelease: ${{ github.event.inputs.prerelease }}
tag: ${{ github.event.inputs.version }}
artifacts: build/libnative.so
artifacts: build/liblayer.so
10 changes: 3 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
cmake_minimum_required(VERSION 3.26)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_COMPILER clang++)
set(CMAKE_CXX_STANDARD 26)

project(native CXX)
project(layer)

include_directories("include")

link_directories("lib")

add_library(native SHARED src/native.cpp)
add_library(layer SHARED src/layer.cpp)
File renamed without changes.

0 comments on commit 0b2fc89

Please sign in to comment.