diff options
author | Brad King <brad.king@kitware.com> | 2006-08-01 18:33:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-01 18:33:10 (GMT) |
commit | e46829b3f1348038d6abf0fe91ce409ef188752a (patch) | |
tree | c321627f238ae791e828719c6b3a0ef112115ef3 /Source | |
parent | 658d38e0af541ef9347eaba5c1aa7430573023e4 (diff) | |
download | CMake-e46829b3f1348038d6abf0fe91ce409ef188752a.zip CMake-e46829b3f1348038d6abf0fe91ce409ef188752a.tar.gz CMake-e46829b3f1348038d6abf0fe91ce409ef188752a.tar.bz2 |
ENH: Added platform identifier for QNXNTO. This partially addresses bug#3556.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index c45f789..1e1b15f 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1907,6 +1907,9 @@ void cmMakefile::AddDefaultDefinitions() #if defined(__APPLE__) this->AddDefinition("APPLE", "1"); #endif +#if defined(__QNXNTO__) + this->AddDefinition("QNXNTO", "1"); +#endif char temp[1024]; sprintf(temp, "%d", cmMakefile::GetMinorVersion()); |