A cross-platform, cross-compiler native makefiles generator
Questions tagged [bakefile]
8 questions
11
votes
3 answers
Makefile generators: premake vs bakefile?
For my C++ build process, I am using Bakefile, a nice little Makefile generator, which lets you specify your build targets in XML, and it can generate various Makefiles or project files from it. It works fine and I use it to generate the GNU…

Frank
- 64,140
- 93
- 237
- 324
1
vote
1 answer
Escaping a system variable to pass as an argument to make
I have a makefile generated by bakefile which is working fine. To run the executable it needs libraries from a different folder. I found the command rpath used to specify the path to these library. But I have to send it to the makefile as an…

David Levy
- 430
- 5
- 18
1
vote
1 answer
Installing Bakefile in Mac osx 10.11
I have been trying to install bakefile(v0.2.9) in mac osx 10.11. Whenever I try to install bakefile using the dmg file I get The installation failed.The installer could not install the software because there was no software found to install error.
I…

vishnu ramadass
- 13
- 4
1
vote
1 answer
Considering modified files for rebuild
I have a C++ project, I am using Bakefile for build process, Makefiles are generated for msvc, mingw, gnu etc for cross-platform support.
Now the problem is that if I change any .h files (which are included in other .cpp files) and performing a…

harik
- 563
- 2
- 5
- 16
1
vote
1 answer
how to run this bakefile (.bkl)
I have the following bakefile (WinSparkle.bkl)
toolsets = vs2008 vs2010 vs2012 vs2013;
if ( $toolset == vs2008 )
SUFFIX = "";
if ( $toolset == vs2010 )
SUFFIX = "-2010";
if ( $toolset == vs2012 )
SUFFIX = "-2012";
if ( $toolset ==…

MistyD
- 16,373
- 40
- 138
- 240
0
votes
1 answer
WxWidgets 3.0.3 Bakefile samples prints contradictory error messages with different Bakefile versions
I'm on OSX 10.12.4, and there seems to be an existing system installation of WxWidgets 3.0.2 as well as bakefile 0.2.10.
I didn't want to touch the system installed WxWidgets so I downloaded the tarball for WxWidgets 3.0.3, ran configure…

Prashanth Chandra
- 2,672
- 3
- 24
- 42
0
votes
1 answer
Getting the output of a command in a Bakefile
I'm just getting started on a project with wxWidgets, and I'm trying to set up a Bakefile for cross-platform compilation. I need to pass the output of wx-config --libs and wx-config --cxxflags to the compiler.
How can I accomplish this? I cannot…

JJJollyjim
- 5,837
- 19
- 56
- 78
0
votes
3 answers
Cross-platform make system supporting 32/64 bit targets on Windows and Linux
I'm looking for a make system, along the lines of CMake or Bakefile, that supports the generation of Visual Studio project files and makefiles (targetting Linux) dual targeting x86 and x64 (in the same project/make file).
I've looked at CMake and…
user172783