Skip to content

Commit

Permalink
build: add dbg suffix to bin targets to alow side-by-side rel install…
Browse files Browse the repository at this point in the history
…, ref #180
  • Loading branch information
iboB committed Nov 6, 2024
1 parent 25ac6c7 commit 4a42d19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/jalog/code/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#
icm_add_lib(ac-jalog AC_JALOG)
add_library(ac::jalog ALIAS ac-jalog)
set_target_properties(ac-jalog PROPERTIES
DEBUG_POSTFIX -d
EXPORT_NAME jalog
)

target_sources(ac-jalog
INTERFACE FILE_SET HEADERS FILES
Expand Down
4 changes: 4 additions & 0 deletions local/code/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#
icm_add_lib(ac-local AC_LOCAL)
add_library(ac::local ALIAS ac-local)
set_target_properties(ac-local PROPERTIES
DEBUG_POSTFIX -d
EXPORT_NAME local
)

target_link_libraries(ac-local
PRIVATE
Expand Down

0 comments on commit 4a42d19

Please sign in to comment.