mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-06 08:37:59 +08:00
45 lines
1.3 KiB
CMake
45 lines
1.3 KiB
CMake
set(TARGET spectrogram)
|
|
|
|
if (EMSCRIPTEN)
|
|
add_executable(${TARGET} main.cpp)
|
|
|
|
target_include_directories(${TARGET} PRIVATE
|
|
..
|
|
${SDL2_INCLUDE_DIRS}
|
|
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${TARGET}/
|
|
)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
ggwave-common-sdl2
|
|
ggsock
|
|
imgui-sdl2
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|
|
|
|
set_target_properties(${TARGET} PROPERTIES LINK_FLAGS " \
|
|
-s FORCE_FILESYSTEM=1 \
|
|
--preload-file ${CMAKE_CURRENT_SOURCE_DIR}/../assets/fonts@/ \
|
|
")
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/build_timestamp-tmpl.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${TARGET}/build_timestamp.h @ONLY)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/index-tmpl.html ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${TARGET}/index.html @ONLY)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/style.css ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${TARGET}/style.css COPYONLY)
|
|
else()
|
|
add_executable(${TARGET} main.cpp)
|
|
|
|
target_include_directories(${TARGET} PRIVATE
|
|
..
|
|
${SDL2_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
ggwave-common-sdl2
|
|
imgui-sdl2
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|
|
endif()
|