Changeset 101 in pacpusframework
- Timestamp:
- Jun 3, 2013, 3:02:22 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cmake/FindPacpus.cmake
r91 r101 14 14 if(NOT ENV{PACPUS_ROOT} STREQUAL "") 15 15 set(PACPUS_ROOT $ENV{PACPUS_ROOT}) 16 string (REPLACE "\\" "/" PACPUS_ROOT ${PACPUS_ROOT}) 16 17 message(STATUS "Detected PACPUS_ROOT in environment, set to '${PACPUS_ROOT}'") 17 18 else() … … 24 25 endif() 25 26 else() 26 message(STATUS "Detected PACPUS_ROOT as argument with the path: '${PACPUS_ROOT}'") 27 string (REPLACE "\\" "/" PACPUS_ROOT ${PACPUS_ROOT}) 28 message(STATUS "Detected PACPUS_ROOT as argument with the path: '${PACPUS_ROOT}'") 27 29 endif() 28 30 -
trunk/src/PacpusLib/CMakeLists.txt
r88 r101 75 75 ${QT_LIBRARIES} 76 76 ${PACPUS_DEPENDENCIES_LIB} 77 78 77 ) 79 78 -
trunk/src/PacpusTools/CMakeLists.txt
r91 r101 91 91 # Build a library 92 92 # ======================================== 93 pacpus_add_library( 94 ${PROJECT_NAME} 93 pacpus_add_library( 94 ${PROJECT_NAME} SHARED 95 95 ${PROJECT_SRCS} 96 96 ${PROJECT_MOC_SRCS} 97 97 ) 98 99 # ======================================== 100 # Libraries 101 # ======================================== 102 target_link_libraries( 103 ${PROJECT_NAME} 104 ${QT_LIBRARIES} 105 ${PACPUS_DEPENDENCIES_LIB} 106 PacpusLib 107 ) 108 98 109 99 110 # ========================================
Note:
See TracChangeset
for help on using the changeset viewer.