diff options
author | gregory guy <[email protected]> | 2019-04-19 16:41:06 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2019-04-21 20:19:23 +0200 |
commit | 55ebab38f1bc2c061eb3673029fee13615635221 (patch) | |
tree | b390ff21b5340f9634a4baee2c7ba2383ee84298 /src/sources/CMakeLists.txt | |
parent | d58173e77380a3b1ea7b036af4bb6ea8135e514d (diff) | |
download | kima-55ebab38f1bc2c061eb3673029fee13615635221.tar.gz kima-55ebab38f1bc2c061eb3673029fee13615635221.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/sources/CMakeLists.txt')
-rw-r--r-- | src/sources/CMakeLists.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/sources/CMakeLists.txt b/src/sources/CMakeLists.txt new file mode 100644 index 0000000..3b407bd --- /dev/null +++ b/src/sources/CMakeLists.txt @@ -0,0 +1,46 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${NVCONTROL_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### sources (static) + +tde_add_library( sources STATIC_PIC AUTOMOC + + SOURCES + labelsourcePrefs.ui + sourceprefs.ui + acpithermalsrc.cpp + batterysrc.cpp + cpuinfofreqsrc.cpp + hddtempsrc.cpp + hwmonfansrc.cpp + hwmonthermalsrc.cpp + i8ksrc.cpp + ibmacpifansrc.cpp + ibmacpithermalsrc.cpp + ibmhdaps.cpp + ibookg4thermalsrc.cpp + labelsource.cpp + nvidiathermalsrc.cpp + omnibookthermalsrc.cpp + source.cpp + sysfreqsrc.cpp + threadedtrigger.cpp + triggeredsource.cpp + updateevent.cpp + uptimesrc.cpp + LINK + tdecore-shared + ${NVCONTROL_LIBRARIES} +) |