mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
75bb2a2ee4
Verify that this works using both targets and variables.
15 lines
200 B
C++
15 lines
200 B
C++
#include <H5Cpp.h>
|
|
|
|
#ifndef H5_NO_NAMESPACE
|
|
using namespace H5;
|
|
#endif
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
if (argc != 2) {
|
|
return 1;
|
|
}
|
|
H5File f(argv[1], H5F_ACC_TRUNC);
|
|
return 0;
|
|
}
|