Skip to content

Commit

Permalink
feat: added a custom argument to CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaskowicz1 committed Oct 14, 2023
2 parents bf36b59 + 74e26dc commit 08cc22c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ add_executable(${PROJECT_NAME}
${bude_src} # Much love to GLOB <3
)

# ===============================================
# Stuff for registering commands via Jenkins

set(REGISTER_COMMANDS, on)

if (REGISTER_COMMANDS)
target_compile_definitions(${PROJECT_NAME} REGISTER_COMMANDS)
endif ()

# Registering commands stuff over.
# ===============================================

# ===============================================
# Required stuff for coro:

Expand Down

0 comments on commit 08cc22c

Please sign in to comment.