diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2015-04-02 00:36:01 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2015-04-02 00:36:01 -0400 |
commit | 737ed7a7f932b1a7e40d2755bcdee6bc0aa2de63 (patch) | |
tree | 4b96f0bb309b85ae53e3044f4d9cd6de050cd6c1 /utils | |
parent | b5d04f4c8a734796c347e5cb5a5053dd75696533 (diff) |
fix PIC flag on old version of cmake
Diffstat (limited to 'utils')
-rw-r--r-- | utils/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 58668254..6982fa11 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -1,4 +1,8 @@ -set(CMAKE_POSITION_INDEPENDENT_CODE ON) +if (CMAKE_VERSION VERSION_LESS 2.8.9) # TODO remove once we increase the cmake requirement + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -DPIC") +else() + set(CMAKE_POSITION_INDEPENDENT_CODE ON) +endif() set(TEST_SRCS dict_test.cc logval_test.cc |