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
src
directory. This is where you will save your source files. - Copy the
CMakeLists.txt
file from the top levelSimpleString
example directory to your directory. - Copy the
src/PackConfig.json.in
file from theSimpleString
example to yoursrc
directory. - Copy the
src/CMakeLists.txt
file from theSimpleString
example to yoursrc
directory. - Optional: edit the
CMakeLists.txt
files to use different files, directories, and names than used in the example. You can find information about how to customize yourCMakeLists.txt
file in the Edit your CMakeLists.txt files section.