Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
f6f350a5
Unverified
Commit
f6f350a5
authored
May 13, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔊
add operating system output
parent
855d25a7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
cmake/download_test_data.cmake
cmake/download_test_data.cmake
+12
-0
No files found.
cmake/download_test_data.cmake
View file @
f6f350a5
...
...
@@ -12,3 +12,15 @@ add_custom_target(download_test_data
# create a header with the path to the downloaded test data
file
(
WRITE
${
CMAKE_BINARY_DIR
}
/include/test_data.hpp
"#define TEST_DATA_DIRECTORY
\"
${
CMAKE_BINARY_DIR
}
/json_test_data
\"\n
"
)
# determine the operating system (for debug and support purposes)
find_program
(
UNAME_COMMAND uname
)
find_program
(
VER_COMMAND ver
)
if
(
UNAME_COMMAND
)
execute_process
(
COMMAND
${
UNAME_COMMAND
}
-a OUTPUT_VARIABLE UNAME_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif
()
if
(
VER_COMMAND
)
execute_process
(
COMMAND
${
VER_COMMAND
}
OUTPUT_VARIABLE VER_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif
()
message
(
STATUS
"Operating system:
${
UNAME_COMMAND_RESULT
}
${
VER_COMMAND_RESULT
}
${
CMAKE_SYSTEM
}
"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment