How to start the server after compile Orthanc

Unable to start serve by this command line.
$ ./Orthanc

here i attached my project structure in command prompt. can you help me from which
directory and how to start Orthanc server.

Thank You

Screenshot 2020-02-24 at 6.43.39 PM.png

Dear Arun,

It seems as if your Orthanc hasn’t been compiled yet. Please take a look at the following link for instructions on how to compile Orthanc:

https://book.orthanc-server.com/faq/compiling.html?highlight=compile

Also, I’d suggest going for the static build. To do that, cd to Orthanc source code directory and issue the following commands:

$ mkdir -pv Build
$ cd Build
$ rm -rf * && cmake -DSTATIC_BUILD=ON -DALLOW_DOWNLOADS=ON …
$ make -j 5
$ ./Orthanc

If you’re familiar with package management, you might might try turning off the dynamic build. That’ll require that you install the development packages for many dependencies; and in some cases you might want to have cmake download it.

Hope this helps. If you have any questions, just hit reply!

Best,