Before you begin
Before you begin, make sure you have looked at the requirements and have installed CMake and the appropriate compilers.
This walkthrough uses files from the SimpleString example. You can find the SimpleString example in the Bifrost SDK's examples directory.
Once you have ensured that you have the required compilers and version of CMake, and have located the SimpleString example, create a directory for your project:
- Create a top-level directory for your project.
- Within that directory, create a
srcdirectory. This is where you will save your source files. - Copy the
CMakeLists.txtfile from the top levelSimpleStringexample directory to your directory. - Copy the
src/PackConfig.json.infile from theSimpleStringexample to yoursrcdirectory. - Copy the
src/CMakeLists.txtfile from theSimpleStringexample to yoursrcdirectory. - Optional: edit the
CMakeLists.txtfiles to use different files, directories, and names than used in the example. You can find information about how to customize yourCMakeLists.txtfile in the Edit your CMakeLists.txt files section.
