mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
56b442ff97
Enables auto uic in smtk-import directory and sets CMAKE_INCLUDE_CURRENT_DIR to ON Signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com>
12 lines
360 B
CMake
12 lines
360 B
CMake
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
set(SMTK_IMPORT_SRCS
|
|
smartrak.c
|
|
smrtk2ssrfc_window.ui
|
|
smrtk2ssrfc_window.h
|
|
smrtk2ssrfc_window.cpp
|
|
)
|
|
|
|
source_group("SmartTrak Import libs" FILES ${SMTK_IMPORT_SRCS})
|
|
add_library(smtk_import STATIC ${SMTK_IMPORT_SRCS})
|
|
target_link_libraries(smtk_import subsurface_corelib ${SUBSURFACE_LINK_LIBRARIES})
|