CMakeRC is a resource compiler provided in a single CMake script that can easily be included in another project.
For the purpose of this project, a resource compiler is a tool that will compile arbitrary data into a program. The program can then read this data from without needing to store that data on disk external to the program.
Examples use cases:
- Storing a web page tree for serving over HTTP to clients. Compiling the web page into the executable means that the program is all that is required to run the HTTP server, without keeping the site files on disk separately.
- Storing embedded scripts and/or shaders that support the program, rather than writing them in the code as string literals.
- Storing images and graphics for GUIs.
These things are all about aiding in the ease of portability and distribution of the program, as it is no longer required to ship a plethora of support files with a binary to your users.
CMakeRC is implemented as a single CMake module, CMakeRC.cmake
. No additional
libraries or headers are required.
This project was initially written as a "literate programming" experiment. The process for the pre-2.0 version can be read about here.
2.0.0+ is slightly different from what was written in the post, but a lot of it still applies.
Installing CMakeRC is designed to be as simple as possible. The only thing
required is the CMakeRC.cmake
script. You can copy it into your project
directory (recommended) or install it as a package and get all the features you
need.
For vcpkg users there is a cmakerc
port that can be installed via vcpkg install cmakerc
or by adding it to dependencies
section of your vcpkg.json
file.
-
Once installed, simply import the
CMakeRC.cmake
script. If you placed the module in your project directory (recommended), simply useinclude(CMakeRC)
to import the module. If you installed it as a package, usefind_package(CMakeRC)
. -
Once included, create a new resource library using
cmrc_add_resource_library
, like this:cmrc_add_resource_library(foo-resources ...)
Where
...
is simply a list of files that you wish to compile into the resource library.
You can use the ALIAS
argument to immediately generate an alias target for
the resource library (recommended):
cmrc_add_resource_library(foo-resources ALIAS foo::rc ...)
Note: If the name of the library target is not a valid C++ namespace
identifier, you will need to provide the NAMESPACE
argument. Otherwise, the
name of the library will be used as the resource library's namespace.
cmrc_add_resource_library(foo-resources ALIAS foo::rc NAMESPACE foo ...)
-
To use the resource library, link the resource library target into a binary using
target_link_libraries()
:add_executable(my-program main.cpp) target_link_libraries(my-program PRIVATE foo::rc)
-
Inside of the source files, any time you wish to use the library, include the
cmrc/cmrc.hpp
header, which will automatically become available to any target that links to a generated resource library target, asmy-program
does above:#include <cmrc/cmrc.hpp> int main() { // ... }
-
At global scope within the
.cpp
file, place theCMRC_DECLARE(<my-lib-ns>)
macro using the namespace that was designated withcmrc_add_resource_library
(or the library name if no namespace was specified):#include <cmrc/cmrc.hpp> CMRC_DECLARE(foo); int main() { // ... }
-
Obtain a handle to the embedded resource filesystem by calling the
get_filesystem()
function in the generated namespace. It will be generated atcmrc::<my-lib-ns>::get_filesystem()
.int main() { auto fs = cmrc::foo::get_filesystem(); }
(This function was declared by the
CMRC_DECLARE()
macro from the previous step.)You're now ready to work with the files in your resource library! See the section on
cmrc::embedded_filesystem
.
All resource libraries have their own cmrc::embedded_filesystem
that can be
accessed with the get_filesystem()
function declared by CMRC_DECLARE()
.
This class is trivially copyable and destructible, and acts as a handle to the statically allocated resource library data.
open(const std::string& path) -> cmrc::file
- Opens and returns a non-directoryfile
object atpath
, or throwsstd::system_error()
on error.is_file(const std::string& path) -> bool
- Returnstrue
if the givenpath
names a regular file,false
otherwise.is_directory(const std::string& path) -> bool
- Returnstrue
if the givenpath
names a directory.false
otherwise.exists(const std::string& path) -> bool
returnstrue
if the given path names an existing file or directory,false
otherwise.iterate_directory(const std::string& path) -> cmrc::directory_iterator
returns a directory iterator for iterating the contents of a directory. Throws if the givenpath
does not identify a directory.
typename iterator
andtypename const_iterator
- Justconst char*
.begin()/cbegin() -> iterator
- Return an iterator to the beginning of the resource.end()/cend() -> iterator
- Return an iterator past the end of the resource.file()
- Default constructor, refers to no resource.
typename value_type
-cmrc::directory_entry
iterator_category
-std::input_iterator_tag
directory_iterator()
- Default construct.begin() -> directory_iterator
- Returns*this
.end() -> directory_iterator
- Returns a past-the-end iterator corresponding to this iterator.operator*() -> value_type
- Returns thedirectory_entry
for which the iterator corresponds.operator==
,operator!=
, andoperator++
- Implement iterator semantics.
filename() -> std::string
- The filename of the entry.is_file() -> bool
-true
if the entry is a file.is_directory() -> bool
-true
if the entry is a directory.
After calling cmrc_add_resource_library
, you can add additional resources to
the library using cmrc_add_resources
with the name of the library and the
paths to any additional resources that you wish to compile in. This way you can
lazily add resources to the library as your configure script runs.
Both cmrc_add_resource_library
and cmrc_add_resources
take two additional
keyword parameters:
-
WHENCE
tells CMakeRC how to rewrite the filepaths to the resource files. The default value forWHENCE
is theCMAKE_CURRENT_SOURCE_DIR
, which is the source directory wherecmrc_add_resources
orcmrc_add_resource_library
is called. For example, if you saycmrc_add_resources(foo images/flower.jpg)
, the resource will be accessible viacmrc::open("images/flower.jpg")
, but if you saycmrc_add_resources(foo WHENCE images images/flower.jpg)
, then the resource will be accessible only usingcmrc::open("flower.jpg")
, because theimages
directory is used as the root where the resource will be compiled from.Because of the file transformation limitations,
WHENCE
is required when adding resources which exist outside of the source directory, since CMakeRC will not be able to automatically rewrite the file paths. -
PREFIX
tells CMakeRC to prepend a directory-style path to the resource filepath in the resulting binary. For example,cmrc_add_resources(foo PREFIX resources images/flower.jpg)
will make the resource accessible usingcmrc::open("resources/images/flower.jpg")
. This is useful to prevent resource libraries from having conflicting filenames. The defaultPREFIX
is to have no prefix.
The two options can be used together to rewrite the paths to your heart's content:
cmrc_add_resource_library(
flower-images
NAMESPACE flower
WHENCE images
PREFIX flowers
images/rose.jpg
images/tulip.jpg
images/daisy.jpg
images/sunflower.jpg
)
int foo() {
auto fs = cmrc::flower::get_filesystem();
auto rose = fs.open("flowers/rose.jpg");
}