add mpanel
This commit is contained in:
parent
3b55fb0c38
commit
b8c61560b9
3 changed files with 28 additions and 0 deletions
|
|
@ -28,3 +28,4 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
||||||
add_subdirectory(mdm)
|
add_subdirectory(mdm)
|
||||||
add_subdirectory(milkwm)
|
add_subdirectory(milkwm)
|
||||||
|
add_subdirectory(mpanel)
|
||||||
|
|
|
||||||
26
mpanel/CMakeLists.txt
Normal file
26
mpanel/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
project(
|
||||||
|
mpanel
|
||||||
|
)
|
||||||
|
|
||||||
|
file(
|
||||||
|
GLOB
|
||||||
|
mpanel_SRC
|
||||||
|
*.c
|
||||||
|
)
|
||||||
|
|
||||||
|
add_executable(
|
||||||
|
mpanel
|
||||||
|
${mpanel_SRC}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(
|
||||||
|
mdm
|
||||||
|
PRIVATE
|
||||||
|
MDELib
|
||||||
|
)
|
||||||
|
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
install(
|
||||||
|
TARGETS mpanel
|
||||||
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
)
|
||||||
1
mpanel/main.c
Normal file
1
mpanel/main.c
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
int main(){}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue