-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update sdk to v3.5.1 and refactor project structure.
- Loading branch information
1 parent
539b273
commit a454b4f
Showing
37 changed files
with
347 additions
and
917 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
cmake_minimum_required(VERSION 3.12) | ||
project(test_project) | ||
|
||
Set source code files | ||
set(SOURCE_FILES test.c) | ||
|
||
Set dynamic library file path | ||
set(LIBRARY_PATH ../shared/windows) | ||
|
||
Set dynamic library file name | ||
set(LIBRARY_NAME libopenimsdk) | ||
|
||
Add executable | ||
add_executable(test.exe ${SOURCE_FILES}) | ||
|
||
Add library directory for linking | ||
link_directories(${LIBRARY_PATH}) | ||
|
||
Add library for linking | ||
target_link_libraries(test.exe ${LIBRARY_NAME}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# openim-sdk-cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# openim-sdk-cpp |
File renamed without changes.
Oops, something went wrong.