diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-25 18:15:50 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-25 18:15:50 +0200 |
commit | bc130b2812700047002f2866012784853c88670e (patch) | |
tree | 6ccfcd47ba6ee0aa934ca4a4251b96edf0a20148 /CMakeLists.txt | |
parent | f8249ec59c43f6aa774ebe4d4660acbf7f41c04b (diff) |
core: link with winmm on win32
Reported-by: @KyokushinPL
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ae2c6d8..fc6fe98a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -455,6 +455,8 @@ endif() target_link_libraries(opentrack opentrack-version opentrack-pose-widget opentrack-spline-widget ${MY_QT_LIBS} ${QXT_QXTCORE_LIB_RELEASE} ${QXT_QXTWIDGETS_LIB_RELEASE}) if(NOT WIN32) target_link_libraries(opentrack dl) +else() + target_link_libraries(opentrack winmm) endif() # make install |