Add Windows support.
This commit is contained in:
parent
ee51f3ee09
commit
683ba5447f
37 changed files with 477 additions and 113 deletions
|
@ -1,6 +1,8 @@
|
|||
list(APPEND console_HEADERS MainApplication.h)
|
||||
|
||||
list(APPEND console_LIB_INCLUDES MainApplication.cpp)
|
||||
|
||||
add_library(console SHARED ${console_LIB_INCLUDES})
|
||||
add_library(console SHARED ${console_LIB_INCLUDES} ${console_HEADERS})
|
||||
|
||||
target_include_directories(console PUBLIC
|
||||
"${PROJECT_SOURCE_DIR}/src/core/"
|
||||
|
@ -14,4 +16,8 @@ target_include_directories(console PUBLIC
|
|||
"${PROJECT_SOURCE_DIR}/src/audio/midi"
|
||||
"${PROJECT_SOURCE_DIR}/src/audio/audio_interfaces"
|
||||
"${PROJECT_SOURCE_DIR}/src/web"
|
||||
)
|
||||
"${SQLite3_INCLUDE_DIR}"
|
||||
)
|
||||
set_property(TARGET console PROPERTY FOLDER src)
|
||||
target_link_libraries(console PUBLIC core audio network database web)
|
||||
set_target_properties( console PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
|
Loading…
Add table
Add a link
Reference in a new issue