diff options
author | bunnei <bunneidev@gmail.com> | 2020-04-16 18:17:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 18:17:18 -0400 |
commit | 5a067eda843caa3631dcdc96adbb5f77b48af37c (patch) | |
tree | cf7d730da6bd222d1244ec6e92b9aa4f391c7777 /src/input_common | |
parent | db67e017cb137376eef1930a6cc1a00c1d53acc5 (diff) | |
parent | b52097804334307103cfaba72cd6e27db804f650 (diff) |
Merge pull request #3675 from degasus/linux_shared_libraries
externals: Use shared libraries if possible
Diffstat (limited to 'src/input_common')
-rw-r--r-- | src/input_common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 2520ba321..a9c2392b1 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt @@ -27,4 +27,4 @@ if(SDL2_FOUND) endif() create_target_directory_groups(input_common) -target_link_libraries(input_common PUBLIC core PRIVATE common ${Boost_LIBRARIES}) +target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) |