Skip to content

Commit

Permalink
[CMake] Also set ARCHIVE_OUTPUT_DIRECTORY to LLGL_OUTPUT_DIR.
Browse files Browse the repository at this point in the history
This is a follow-up fix to have the output .lib/.a files alongside the output .dll/.exe/.so files.
  • Loading branch information
LukasBanana committed Feb 17, 2025
1 parent 3df9f9c commit 77d1dae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,9 @@ function(set_llgl_module_properties MODULE_NAME)
LINKER_LANGUAGE CXX
DEBUG_POSTFIX "D"
FOLDER "LLGL"
RUNTIME_OUTPUT_DIRECTORY "${LLGL_OUTPUT_DIR}"
ARCHIVE_OUTPUT_DIRECTORY "${LLGL_OUTPUT_DIR}"
LIBRARY_OUTPUT_DIRECTORY "${LLGL_OUTPUT_DIR}"
RUNTIME_OUTPUT_DIRECTORY "${LLGL_OUTPUT_DIR}"
)
endfunction()

Expand Down

0 comments on commit 77d1dae

Please sign in to comment.