We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to my lack of knowledge of CMake and C++ in general, I had to do the following:
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/resources/vindec_resource_countries.txt ${CMAKE_BINARY_DIR} COPYONLY) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/resources/vindec_resource_manufacturers.txt ${CMAKE_BINARY_DIR} COPYONLY)
This means that the resource files are output to the root build directory:
I access the files like this because I don't know how to access them if they were inside a subdirectory rather than the root build directory.
std::string getManufaturer(const char *manufacturerCode) { return getValue(manufacturerCode, "vindec_resource_manufacturers.txt"); }
I would really love some assistance on this!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Due to my lack of knowledge of CMake and C++ in general, I had to do the following:
This means that the resource files are output to the root build directory:
I access the files like this because I don't know how to access them if they were inside a subdirectory rather than the root build directory.
I would really love some assistance on this!
The text was updated successfully, but these errors were encountered: