Skip to content

Commit

Permalink
thermald-dock: Added install target to CMakeLists.txt
Browse files Browse the repository at this point in the history
* Install Target added
* Unused CTest stuff removed
  • Loading branch information
Robert Wappler committed Apr 20, 2014
1 parent ef4340d commit f9f8644
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ project(thermald-dock)
cmake_minimum_required(VERSION 2.6)

set(CMAKE_VERBOSE_MAKEFILE ON)
include(CTest)
enable_testing()

set(CMAKE_BUILD_TYPE DEBUG)
#set(CMAKE_BUILD_TYPE DEBUG)

add_subdirectory(src bin)
4 changes: 3 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ qt4_wrap_cpp(thermald_dock_MOC ${thermald_dock_HDRS})
set(thermald_dock_SRCS thermald-dock.cpp ${thermald_dock_RCCS})

add_executable(thermald-dock ${thermald_dock_MOC} ${thermald_dock_SRCS})
target_link_libraries(thermald-dock ${QT_LIBRARIES})
target_link_libraries(thermald-dock ${QT_LIBRARIES})

install(TARGETS thermald-dock DESTINATION bin)

0 comments on commit f9f8644

Please sign in to comment.