File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ add_custom_target(version ALL
36
36
37
37
add_custom_command (OUTPUT ${VTR_VERSION_FILE_OUT}
38
38
COMMAND ${CMAKE_COMMAND}
39
- -D IN_FILE=${VTR_VERSION_FILE_IN}
40
- -D OUT_FILE=${VTR_VERSION_FILE_OUT}
41
- -D VTR_VERSION_MAJOR=${VTR_VERSION_MAJOR}
42
- -D VTR_VERSION_MINOR=${VTR_VERSION_MINOR}
43
- -D VTR_VERSION_PATCH=${VTR_VERSION_PATCH}
44
- -D VTR_VERSION_PRERELEASE=${VTR_VERSION_PRERELEASE}
45
- -D VTR_COMPILER_INFO=${VTR_COMPILER_INFO}
39
+ -D IN_FILE=" ${VTR_VERSION_FILE_IN} "
40
+ -D OUT_FILE=" ${VTR_VERSION_FILE_OUT} "
41
+ -D VTR_VERSION_MAJOR=" ${VTR_VERSION_MAJOR} "
42
+ -D VTR_VERSION_MINOR=" ${VTR_VERSION_MINOR} "
43
+ -D VTR_VERSION_PATCH=" ${VTR_VERSION_PATCH} "
44
+ -D VTR_VERSION_PRERELEASE=" ${VTR_VERSION_PRERELEASE} "
45
+ -D VTR_COMPILER_INFO=" ${VTR_COMPILER_INFO} "
46
46
-P ${CMAKE_CURRENT_SOURCE_DIR} /cmake/modules/configure_version.cmake
47
47
MAIN_DEPENDENCY ${VTR_VERSION_FILE_IN}
48
48
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} )
Original file line number Diff line number Diff line change 3
3
4
4
#include < vector>
5
5
#include < string>
6
+ #include < cstdarg>
6
7
7
8
namespace vtr {
8
9
Original file line number Diff line number Diff line change 2
2
#define VPR_ERROR_H
3
3
4
4
#include " vtr_error.h"
5
+ #include < cstdarg>
5
6
6
7
enum e_vpr_error {
7
8
VPR_ERROR_UNKNOWN = 0 ,
You can’t perform that action at this time.
0 commit comments