You can set whatever C++ flags you need in the CMAKE_CXX_FLAGS variable. If you run cmake-gui and hit "configure" then you will see a visual list of all the settings, e.g. to turn off features you don't need. You you can set them in the GUI and generate your makefiles.
Alternatively you can run `cmake -DCMAKE_CXX_FLAGS=x -DSOMETHING=y ...` from the command line once you know what variables you need to set. On Mon, Sep 25, 2017 at 4:04 AM, Marco <[email protected]> wrote: > Hi I would like to compile a minimal 32 bits lightweight version of the c++ > broker to be able to run it on an old i386 linux, I do not care about ssl > or > acl but I need to persist messages. > I tried to understand how to do it but as I am not that strong with CMake I > decided to ask help here, could someone please point me in the right > direction.. > > > > -- > Sent from: http://qpid.2158936.n2.nabble.com/Apache-Qpid-developers- > f7254403.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
