open-license-manager
2014-10-15 5ca8ad733358215fa0da21e86637b99d2fa7a0d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
if(WIN32)
ADD_LIBRARY(
    tools_base STATIC
    CryptoHelper.cpp
    win/CryptoHelperWindows.cpp
)
else(WIN32)
ADD_LIBRARY(
    tools_base STATIC
    CryptoHelper.cpp
    linux/CryptoHelperLinux.cpp
)
ENDIF(WIN32)
 
target_link_libraries(
     tools_base
     ${EXTERNAL_LIBS}
)