https://github.com/dzejkop/pastel
Wanna embed a .bmp in your C++ program? Or maybe a .dll? Get PaSTeL!
https://github.com/dzejkop/pastel
cpp python
Last synced: about 2 months ago
JSON representation
Wanna embed a .bmp in your C++ program? Or maybe a .dll? Get PaSTeL!
- Host: GitHub
- URL: https://github.com/dzejkop/pastel
- Owner: Dzejkop
- Created: 2017-05-11T03:06:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T08:26:32.000Z (over 8 years ago)
- Last Synced: 2025-07-01T13:06:42.988Z (12 months ago)
- Topics: cpp, python
- Language: Python
- Homepage:
- Size: 3.31 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PaSTeL - Python Static daTa Linker
**Now with 100% more Windows support**
## What is it and how does it work?
`PaSTeL` allows you statically compile files into your binary.
My 3 main goals are for `PaSTeL` to be:
* Easy to use
* Platform independent
* Easy to integrate into your build system
## Features
- [x] Static linking of files on Linux
- [x] Platform independent linking (**untested on OSX**)
- [x] Command line arguments
- [x] Support for multiple source files
- [ ] Extensible configuration
- [x] Easy integration into Makefile
- [ ] Easy integration into CMake
- [ ] Easy integration with Visual Studio
- [ ] Namespaces support
## Requirements
1. Python3
## Usage
Basic:
`python -s -s -t target_file`
Additional options:
* `--verbose` verbose
* `--generate_header` generates the pastel.h
## Examples
* [Makefile 1](/example)