14 lines
246 B
CMake
14 lines
246 B
CMake
if (WIN32)
|
|
set(IMHEX_APPLICATION_NAME "imhex-gui")
|
|
else ()
|
|
set(IMHEX_APPLICATION_NAME "imhex")
|
|
endif ()
|
|
|
|
add_subdirectory(gui)
|
|
if (WIN32)
|
|
add_subdirectory(forwarder)
|
|
endif ()
|
|
|
|
if (NOT EMSCRIPTEN)
|
|
add_subdirectory(updater)
|
|
endif () |