diff options
author | Brad King <brad.king@kitware.com> | 2016-06-13 13:54:17 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-13 13:54:17 (GMT) |
commit | 941fbe31f56e0841280288bf3e43de873aabe957 (patch) | |
tree | bd4d3538fc739c5bb86c8085a664a0cc9c3b573b /Source/cmMakefile.h | |
parent | ff1cce464d6e372cd2aced01fac28394c213aca9 (diff) | |
parent | 896ad251de49f167f4ce3cbbcf9a6cce85a16681 (diff) | |
download | CMake-941fbe31f56e0841280288bf3e43de873aabe957.zip CMake-941fbe31f56e0841280288bf3e43de873aabe957.tar.gz CMake-941fbe31f56e0841280288bf3e43de873aabe957.tar.bz2 |
Merge topic 'find-lib32'
896ad251 Teach find_library and find_package to search lib32 paths (#11260)
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index a078362..7b1b334 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -437,6 +437,9 @@ public: bool IsOn(const std::string& name) const; bool IsSet(const std::string& name) const; + /** Return whether the target platform is 32-bit. */ + bool PlatformIs32Bit() const; + /** Return whether the target platform is 64-bit. */ bool PlatformIs64Bit() const; |