Tagged Questions
The premake tag has no wiki summary.
6
votes
2answers
1k views
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 ...
3
votes
1answer
123 views
Creating static library and linking to it with premake
I am currently trying to learn how to use premake 4 in order to apply it to the OpenGL sdk. I am currently trying to make a Visual Studio 2010 solution that constructs 2 projects, one being a static ...
2
votes
2answers
34 views
In premake 3.7, how do I generate -O0 instead of -O2 for gcc?
It seems that -O2 is always generated unless I specify "optimize-speed" (which results in -O3) or "optimize-size" (which results in -Os) in buildflags. If I specify nothing in buildflags but pass ...
2
votes
2answers
100 views
How can I run custom tools from a premake build script?
I'm using protocol buffers for data serialization in my C++ application. I would like to add the invokation of the protoc code generator in my premake build script (thus ensure the up-to-date state of ...
2
votes
2answers
589 views
OSX/Darwin unresolved symbols when linking functions from <math.h>
I'm in the process of porting a large'ish (~1M LOC) project from a Window/Visual Studio environment to other platforms, the first of which happens to be Mac OS X.
Originally the project was ...
1
vote
2answers
230 views
Premake4: How to set mac os x xcode C++ project to have option “build active configuration only” active?
Problem: when you do not specify that option xcode project tries to build all it can (in my case not only i386 but also some other archs which I do not have library's for and I do not need.)
Current ...
0
votes
1answer
47 views
Error when using premake with the function “UseLibs” with OpenGL sdk
I am using premake to make new projects using the OpenGL sdk. I am trying to put together my first real project, but I am having an error when I run premake4 vs2010 command. I am trying to use the ...
0
votes
1answer
53 views
Premake Script: How to look into parent directory for file
This is a fairly simple question looking for a fairly simple answer. If I want to create a solution in the parent directory of the premake4.lua file, how do I specify that relative to the premake4.lua ...
0
votes
1answer
84 views
OpenGL SDK How To Create New Projects With Premake
I have recently begun the process of learning OpenGL to start making some Graphical applications using C++. I have installed the OpenGL SDK and I am able to build the projects properly on that. ...
0
votes
1answer
86 views
How to use premake on *.lua files
Any help bout how to use premake4? I have a *.lua file that I want to compile.
I downloaded the executable "premake4" but when I run ./premake4 myfile it returns me an error.
0
votes
1answer
107 views
Lua for premake4 beginners: is 'variable = {“a”, “b”}' same thing as 'variable {“a”, “b”}'?
In premake we have constructs like files { "**.h", "**.cpp" } would files = { "**.h", "**.cpp" } be same thing?
0
votes
2answers
406 views
Premake project build/config script: How to let user add his own paths to an array of paths with libs (libdirs) and includes (includedirs)?
I have simple console application project for live video streaming using cross-platform libs on to some TCP server. I have it ported manually to Linux and Mac OS X from Windows. So now I have 3 ...
0
votes
0answers
148 views
Anonymous “Confessions” website script? [closed]
Are there any free or paid (but not more than 10$) 'confessions' website scripts out there, or anything that could be easily converted into one?
0
votes
1answer
281 views
Build System with Recursive Dependency Aggregation
I recently began setting up my own library and projects using a cross platform build system (generates make files, visual studio solutions/projects etc on demand) and I have run into a problem that ...