File tree 5 files changed +4
-3
lines changed
5 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
.vscode /
3
3
build /
4
- dist /
4
+ dist /*
5
5
! .gitkeep
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ set(SOURCES
11
11
src/writing.cpp
12
12
)
13
13
14
- set (OUTPUT_DIR ${CMAKE_CURRENT_SOURCE_DIR} /dist)
14
+ set (OUTPUT_DIR ${CMAKE_CURRENT_SOURCE_DIR} /dist/ )
15
15
16
16
find_library (LIBASSIMP
17
17
NAMES assimp-vc143-mt assimp.5
@@ -26,6 +26,7 @@ target_link_libraries(${PROJECT_NAME} ${LIBASSIMP})
26
26
27
27
## Export files to dist folder
28
28
set_target_properties (${PROJECT_NAME} PROPERTIES
29
+ RUNTIME_OUTPUT_DIRECTORY ${OUTPUT_DIR}
29
30
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${OUTPUT_DIR}
30
31
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${OUTPUT_DIR}
31
32
)
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ etc. See [examples](examples) for little example projects.
26
26
Run ` yamc -h ` to see help message with all arguments and their description.
27
27
28
28
# Building from source
29
- Following commands build yamc binary into a ` dist ` folder (created automatically ).
29
+ Following commands build yamc binary into folder [ dist ] ( dist ) .
30
30
* Requires [ CMake] ( https://cmake.org/ ) 3.23 at least and a C++17 compiler!*
31
31
32
32
``` sh
You can’t perform that action at this time.
0 commit comments