Skip to content

Commit ef34cb7

Browse files
committed
Add support for C loader packages.
1 parent 04e0d73 commit ef34cb7

File tree

12 files changed

+403
-189
lines changed

12 files changed

+403
-189
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,21 @@ _open-project.bat
4747
_start-cmake-gui.bat
4848
_start-cmd.bat
4949

50+
# macOS files
51+
.DS_Store
52+
5053
# Local config unix
5154
.localconfig
5255

5356
# Visual Studio Code
5457
.vscode
5558

59+
# Clang files
60+
.cache
61+
5662
# Linked dockerignore file in main context
5763
.dockerignore
5864
!tools/deps/.dockerignore
5965
!tools/dev/.dockerignore
6066
!tools/runtime/.dockerignore
6167
!tools/cli/.dockerignore
62-
63-
# macOS files
64-
.DS_Store

source/loaders/c_loader/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,15 @@ target_compile_options(${target}
190190
INTERFACE
191191
)
192192

193+
#
194+
# Compile features
195+
#
196+
197+
target_compile_features(${target}
198+
PRIVATE
199+
cxx_std_17 # Required for filesystem
200+
)
201+
193202
#
194203
# Linker options
195204
#

0 commit comments

Comments
 (0)