Skip to content

Commit

Permalink
Fixing CLIENT_ONLY build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jholloc committed Mar 20, 2024
1 parent 107fba9 commit 9a7c6a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/logging/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ if( NOT CLIENT_ONLY )
endif()

target_link_libraries( logging-client-objects PUBLIC Boost::boost )
target_link_libraries( logging-server-objects PUBLIC Boost::boost )
if( NOT CLIENT_ONLY )
target_link_libraries( logging-server-objects PUBLIC Boost::boost )
endif()

file( GLOB HEADER_FILES "*.h" )

Expand Down

0 comments on commit 9a7c6a2

Please sign in to comment.