From 70fe716d063a2543d9a905c3dcce6c6a934965c3 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 27 Mar 2019 21:02:50 -0400 Subject: [PATCH] Removed bit about PIC in libraries; meson builds shared libraries as PIC always (and by default in the future, should the need to not have a PIC shared library arise). Executables will be a bit harder due to meson versioning. --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 77dcd5e3..f1a93901 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,10 +15,6 @@ endif() endif() -# TODO why is this not a default?! -set_property(TARGET libui PROPERTY - POSITION_INDEPENDENT_CODE True) - macro(_add_exec _name) set_property(TARGET ${_name} PROPERTY POSITION_INDEPENDENT_CODE True)