Skip to content

Commit 46ffd33

Browse files
committed
Update docs
1 parent f6a25cb commit 46ffd33

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

docs/build_rpcpp.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,25 @@ And enabling `BUILD_DOCUMENTS` option will build documents using Doxygen.
4646

4747

4848
## Integration with Plugin & Samples
49-
```cmake
50-
project(render_pipeline_package)
49+
There are a plugin project (https://github.com/bluekyu/rpcpp_plugins) and
50+
a sample project (https://github.com/bluekyu/rpcpp_samples).
5151

52+
If you want to build with plugins and samples, you can do it using the following ways.
53+
54+
### 1. Directory Structure
55+
```
56+
- ROOT_DIR
57+
|- build # CMake build directory
58+
|- render_pipeline_cpp # Render Pipeline C++ project
59+
|- rpcpp_plugins # Plugin project
60+
|- rpcpp_samples # Sample project
61+
```
62+
63+
### 2. CMake
64+
```
65+
project(render_pipeline_projects)
66+
67+
# write paths on your system
5268
set(BOOST_ROOT "......" CACHE PATH "" FORCE)
5369
set(Boost_USE_STATIC_LIBS true CACHE BOOL "" FORCE)
5470
set(panda3d_ROOT "......" CACHE PATH "" FORCE)

docs/ko_kr/build_rpcpp.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,25 @@ Native 모듈은 Python 버전의 Render Pipeline 과 동일하며 정적 링크
4646

4747

4848
## Integration with Plugin & Samples
49-
```cmake
50-
project(render_pipeline_package)
49+
플러그인 프로젝트(https://github.com/bluekyu/rpcpp_plugins) 와
50+
샘플 프로젝트(https://github.com/bluekyu/rpcpp_samples)가 있습니다.
5151

52+
플러그인과 샘플들을 함께 빌드하려면, 다음 방법을 사용하면 됩니다.
53+
54+
### 1. Directory Structure
55+
```
56+
- ROOT_DIR
57+
|- build # CMake 빌드 폴더
58+
|- render_pipeline_cpp # Render Pipeline C++ 프로젝트 폴더
59+
|- rpcpp_plugins # 플러그인 프로젝트 폴더
60+
|- rpcpp_samples # 샘플 프로젝트 폴더
61+
```
62+
63+
### 2. CMake
64+
```
65+
project(render_pipeline_projects)
66+
67+
# 개인 시스템에 맞는 경로을 사용
5268
set(BOOST_ROOT "......" CACHE PATH "" FORCE)
5369
set(Boost_USE_STATIC_LIBS true CACHE BOOL "" FORCE)
5470
set(panda3d_ROOT "......" CACHE PATH "" FORCE)

0 commit comments

Comments
 (0)