0

I was working on a project which requires me to add a user.cmake file in the root directory. Can anyone help me out hot to create the .cmake file...

Link to Project Directory

  • Welcome to Stack Overflow! We are Question/Answer site, but I see no **question** in your post. Could you elaborate what functionality do you expect from `.cmake` file, what have you tried and what exactly causes the difficulty for you? You may also (re-)read [ask]. – Tsyvarev Oct 21 '21 at 07:10

1 Answers1

0

According to the link you provided user.cmake just needs to point where so-called eego sdk is located in your file system:

set(EEGO_SDK_ZIP /path/to/download/eego-sdk-1.3.19.40453.zip)

There is nothing fancy actually here, just make a plain text file, put this one line (don't forget to replace the EEGO_SDK_ZIP variable content) and save it with the name user.cmake

The Dreams Wind
  • 8,416
  • 2
  • 19
  • 49