Skip to content

Commit

Permalink
Add support for C loader packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Nov 12, 2024
1 parent 04e0d73 commit ef34cb7
Show file tree
Hide file tree
Showing 12 changed files with 403 additions and 189 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,21 @@ _open-project.bat
_start-cmake-gui.bat
_start-cmd.bat

# macOS files
.DS_Store

# Local config unix
.localconfig

# Visual Studio Code
.vscode

# Clang files
.cache

# Linked dockerignore file in main context
.dockerignore
!tools/deps/.dockerignore
!tools/dev/.dockerignore
!tools/runtime/.dockerignore
!tools/cli/.dockerignore

# macOS files
.DS_Store
9 changes: 9 additions & 0 deletions source/loaders/c_loader/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,15 @@ target_compile_options(${target}
INTERFACE
)

#
# Compile features
#

target_compile_features(${target}
PRIVATE
cxx_std_17 # Required for filesystem
)

#
# Linker options
#
Expand Down
Loading

0 comments on commit ef34cb7

Please sign in to comment.