-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
Calling bin2cpp with the following argument:
--file=..\..\..\samples\demo_website\www\index.html.old --output=..\..\temp
This resulted in the following output:
bin2cpp v3.1.0 - Convert binary files into C++ source code.
Copyright (C) 2013-2025 end2endzone.com. All rights reserved.
bin2cpp is open source software, see http://github.com/end2endzone/bin2cpp
Embedding "..\..\..\samples\demo_website\www\index.html.old"...
Writing file "..\..\temp\index.html.h"...
Writing file "..\..\temp\index.cpptml.cpp"...
```
The name of the header file is properly named: `index.html.h`.
The name of the cpp file seems incorrect: `index.cpptml.cpp`.
The expected output file name is `index.cpp` or at worst `index.html.cpp`.
Reactions are currently unavailable