init mbiff
This commit is contained in:
parent
8977d30b9a
commit
6f00f08225
2 changed files with 27 additions and 0 deletions
26
mbiff/CMakeLists.txt
Normal file
26
mbiff/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
project(
|
||||
mbiff
|
||||
)
|
||||
|
||||
file(
|
||||
GLOB
|
||||
mbiff_SRC
|
||||
*.c
|
||||
)
|
||||
|
||||
add_executable(
|
||||
mbiff
|
||||
${mbiff_SRC}
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
mbiff
|
||||
PRIVATE
|
||||
MDELib Mw
|
||||
)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
install(
|
||||
TARGETS mbiff
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
)
|
||||
1
mbiff/main.c
Normal file
1
mbiff/main.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
int main() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue