From 349cc23b8c90ed99c09ea90866063621a3e6267b Mon Sep 17 00:00:00 2001 From: Marc Vef Date: Mon, 8 Nov 2021 19:03:33 +0100 Subject: [PATCH 1/2] Ignoring .run/ directory from CLion in gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2607c5bd4..ec58526e1 100644 --- a/.gitignore +++ b/.gitignore @@ -83,7 +83,6 @@ playground *.pyc .hidden_playground/ - test/build/ - build/ +.run/ -- GitLab From b04d18d92209958fb68b053b04bd23a227f8ec17 Mon Sep 17 00:00:00 2001 From: Marc Vef Date: Mon, 8 Nov 2021 19:03:59 +0100 Subject: [PATCH 2/2] Fixing position independent code typo in path_util cmake --- src/common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 65a99beec..975432e55 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -93,7 +93,7 @@ endif() add_library(path_util STATIC ) -set_property(TARGET metadata PROPERTY POSITION_INDEPENDENT_CODE ON) +set_property(TARGET path_util PROPERTY POSITION_INDEPENDENT_CODE ON) target_sources(path_util PRIVATE -- GitLab