mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
18 lines
333 B
CMake
18 lines
333 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
|
FILE(GLOB SRC
|
|
parser.c
|
|
init.cpp
|
|
MainWindow.*
|
|
interface.cpp
|
|
Window.*
|
|
ConnectWindow.h
|
|
)
|
|
|
|
if(GTKMM_FOUND)
|
|
include_directories(${GTKMM_INCLUDE_DIRS})
|
|
add_executable(nprog ${NPROG_CLIENT_SRC})
|
|
target_link_libraries(nprog ${GTKMM_LIBRARIES} -pthread -lgthread-2.0 -lrt -lglib-2.0 )
|
|
endif()
|
|
|