Current Engineering Project
I keep this engineering notebook more for my own use more than for any other reason. It's invaluable when trying to find a solution to a problem I know I've solved before. You are welcome to browse though it to see what it takes to build a SETI station a Cosmic Ray detector or a replacement brain component..
You can access earlier chapters from the main menu (Engineering | Notebook) or use the custom search below.
Google Search of SETI NetVolume 14 Chapter 78
450 - Compiling HDF5 with Delphi and VS Studio - 2021-09-27
I am trying to find a way to take Berkley SETI data, in the form of HDF5 files, Select only a portion of the file that I interested in and accessing that portion using my SETI Net Spectrum Analyzer and search algorithms.
Its painful.
First thing I had to do was bust through the Build system used in Visual Studio 2019. This cookbook setup causes a directory structure like this to be built:
The cook book for this setup in a VS project is:
-
Start VS and Add New project. Put it in its own directory to keep track of it.
-
Open the projects property sheet (Right click and select Properties from the bottom)
-
Set up the General properties per the figure below. This generates the structure I want
-
Setup the location where the .EXE will be placed during debugging. Then I can simply click on it directly if I want.
-
Then the Include directories needed. Got to have these or it will not compile. They point to the HDF5 libray includes needed.
-
Now the link to the library
-
...and finally the Linker target
- Now it should Clean ,Compile and Run