Top "Preprocessor" questions

A program that processes input data to produce output that is used as input to another program.

Add preprocessor macro to a target in xcode 6

Probably this is pretty simple, but I can't find a way to define a preprocessor macro for a target in …

xcode macros preprocessor target
Swift: how to use PREPROCESSOR Flags (like `#if DEBUG`) to implement API keys?

In Objective-C it was sometimes useful to use static string constants to define alternate API keys (for example to differentiate …

swift xcode macros preprocessor xcode-build-settings
WiX undefined preprocessor variable

I'm starting to use WiX in order to do automated builds to create msi's of my c# projects and am …

wix preprocessor build-automation wix3 votive
How do you implement "#ifdef" in python?

Programming in C I used to have code sections only used for debugging purposes (logging commands and the like). Those …

python preprocessor
How do I use theme preprocessor functions for my own templates?

I have several .tpl.php files for nodes, CCK fields, and Views theming. These template files have a lot of …

drupal drupal-6 preprocessor drupal-theming
CMake conditional preprocessor define on code

I'm migrating a makefile project to CMake. The person who wrote the makefile the first time had done a module …

c cmake preprocessor
How do I override a Python import?

I'm working on pypreprocessor which is a preprocessor that takes c-style directives and I've been able to make it work …

python import preprocessor overriding
Need a python module for stemming of text documents

I need a good python module for stemming text documents in the pre-processing stage. I found this one http://pypi.…

python module preprocessor nlp stemming
How to detect compilation by Android NDK in a C/C++ file?

Is there a preprocessor macro that will let me know NDK is compiling my code? I could manually define my …

android preprocessor android-ndk
Equivalent of #define in Java?

I'm writing a library that needs to have some code if a particular library is included. Since this code is …

java preprocessor c-preprocessor