Skip to content

Commit 592d6b9

Browse files
committed
Add basic installation support for the executable and properties file.
1 parent 01fe023 commit 592d6b9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

install.cmake

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ToDo: Make directory structure configurable
2+
install(TARGETS projectMSDL
3+
RUNTIME DESTINATION .
4+
)
5+
6+
install(FILES ${PROJECTM_CONFIGURATION_FILE}
7+
DESTINATION .
8+
)

src/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

2-
configure_file(resources/projectMSDL.properties.in ${CMAKE_CURRENT_BINARY_DIR}/projectMSDL.properties @ONLY)
2+
set(PROJECTM_CONFIGURATION_FILE "${CMAKE_CURRENT_BINARY_DIR}/projectMSDL.properties" PARENT_SCOPE)
3+
configure_file(resources/projectMSDL.properties.in ${PROJECTM_CONFIGURATION_FILE} @ONLY)
34

45
add_executable(projectMSDL WIN32
56
AudioCapture.cpp

0 commit comments

Comments
 (0)