Hi
I'm using cmake to compile itpp (v 4.3.1 ) on windows with gcc
I need to enable itpp exceptions but there is no information on the Installation page about enabling exceptions using cmake
How can i enable exceptions with cmake?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
From command line use
cmake .. -DITPP_EXCEPTIONS=on
or in cmake-gui define a new variable ITPP_EXCEPTIONS of type bool and init with true.
This should at least put in config.h a
#define ITPP_EXCEPTIONS
regards
Bogdan
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi
I'm using cmake to compile itpp (v 4.3.1 ) on windows with gcc
I need to enable itpp exceptions but there is no information on the Installation page about enabling exceptions using cmake
How can i enable exceptions with cmake?
Hi
From command line use
cmake .. -DITPP_EXCEPTIONS=on
or in cmake-gui define a new variable ITPP_EXCEPTIONS of type bool and init with true.
This should at least put in config.h a
#define ITPP_EXCEPTIONS
regards
Bogdan