mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 15:18:26 -05:00
75bb2a2ee4
Verify that this works using both targets and variables.
13 lines
210 B
C
13 lines
210 B
C
#include <hdf5.h>
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
hid_t fid;
|
|
if (argc != 2) {
|
|
return 1;
|
|
}
|
|
fid = H5Fcreate(argv[1], H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
H5Fclose(fid);
|
|
return 0;
|
|
}
|