Changeset 2321
- Timestamp:
- 01/24/08 19:18:10 (12 months ago)
- Location:
- vidalia/trunk
- Files:
-
- 3 modified
-
CMakeLists.txt (modified) (1 diff)
-
src/CMakeLists.txt (modified) (1 diff)
-
src/util/CMakeLists.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vidalia/trunk/CMakeLists.txt
r2320 r2321 45 45 include(CPack) 46 46 47 if(MSVC_IDE) 48 # Supress regeneration 49 set(CMAKE_SUPPRESS_REGENERATION TRUE) 50 set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) 51 set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) 52 endif(MSVC_IDE) 53 47 54 ## Define Vidalia-specific CMake options 48 55 if (APPLE) -
vidalia/trunk/src/CMakeLists.txt
r2201 r2321 41 41 endif(APPLE) 42 42 43 if(MSVC) 44 add_definitions(-D_USE_MATH_DEFINES=1) 45 endif(MSVC) 46 43 47 ## Add some Qt definitions 44 48 if (WIN32) -
vidalia/trunk/src/util/CMakeLists.txt
r2236 r2321 53 53 54 54 if(USE_QSSLSOCKET) 55 target_link_libraries(util crypto ssl) 55 target_link_libraries(util) 56 if(UNIX) 57 ## XXX: This is not quite right, since we still may need to link in 58 ## OpenSSL libs on Windows as well, depending on how Qt was built. 59 ## It suffices for the default Qt install on Windows though, until we 60 ## gets some more complex CMake fu in. 61 target_link_libraries(crypto ssl) 62 endif(UNIX) 56 63 endif(USE_QSSLSOCKET) 57 64
