From cbebe4812b376cc50b6da88e6a879f0c2a40c157 Mon Sep 17 00:00:00 2001 From: William Bell Date: Sat, 5 Jul 2025 04:58:08 +0100 Subject: [PATCH] pull submodules --- .github/workflows/release.yml | 2 ++ CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dce74d7..7f3d096 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + with: + submodules: recursive - name: Setup Python (needed for Conan) uses: actions/setup-python@v4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 70315dc..38579c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ add_custom_command( add_custom_target(GenerateLexer DEPENDS ${LEXER_C} ${LEXER_H}) # Step 3: Add executable -add_executable(argon ${CFILES} ${LEXER_C}) +add_executable(argon external/xxhash/xxhash.c ${CFILES} ${LEXER_C}) # Step 4: Build order add_dependencies(argon GenerateLexer)