nf7/CMakeLists.txt
2022-06-14 10:45:42 +09:00

122 lines
2.9 KiB
CMake

cmake_minimum_required(VERSION 3.18)
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
# ---- configuration ----
project(nf7 CXX)
option(NF7_STATIC "link all libs statically" ON)
set(NF7_GENERATED_INCLUDE_DIR "${PROJECT_BINARY_DIR}/include/generated")
file(MAKE_DIRECTORY "${NF7_GENERATED_INCLUDE_DIR}")
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(NF7_CXX_FLAGS
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
-Wall -Werror -pedantic-errors -Wextra -Wconversion -Wsign-conversion>
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:
-Wno-overloaded-virtual>
$<$<CXX_COMPILER_ID:MSVC>:
/W4 /WX /Zc:__cplusplus /external:anglebrackets /external:W0>
)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
add_subdirectory(thirdparty EXCLUDE_FROM_ALL)
add_subdirectory(tool)
# ---- application ----
add_executable(nf7)
target_compile_options(nf7 PRIVATE ${NF7_CXX_FLAGS})
target_include_directories(nf7 PRIVATE . "${PROJECT_BINARY_DIR}/include")
target_compile_definitions(nf7
PRIVATE
IMGUI_DEFINE_MATH_OPERATORS
$<$<PLATFORM_ID:Darwin>:GL_SILENCE_DEPRECATION>
$<$<PLATFORM_ID:Darwin>:_GNU_SOURCE>
)
target_sources(nf7
PRIVATE
main.cc
nf7.cc
nf7.hh
common/aggregate_command.hh
common/async_buffer.hh
common/async_buffer_adaptor.hh
common/buffer.hh
common/dir.hh
common/dir_item.hh
common/file_ref.hh
common/future.hh
common/generic_context.hh
common/generic_history.hh
common/generic_memento.hh
common/generic_type_info.hh
common/generic_watcher.hh
common/gui_file.hh
common/gui_node.hh
common/gui_resizer.hh
common/gui_window.hh
common/history.hh
common/lambda.hh
common/lock.hh
common/logger.hh
common/logger_ref.hh
common/luajit.hh
common/luajit_obj.hh
common/luajit_queue.hh
common/luajit_ref.hh
common/memento.hh
common/native_file.hh
common/node.hh
common/node_link_store.hh
common/ptr_selector.hh
common/queue.hh
common/task.hh
common/value.hh
common/wait_queue.hh
common/yas_imgui.hh
common/yas_imnodes.hh
common/yas_nf7.hh
common/yas_std_filesystem.hh
$<$<PLATFORM_ID:Linux>:common/native_file_unix.cc>
file/luajit_context.cc
file/luajit_node.cc
file/luajit_obj.cc
file/node_imm.cc
file/node_network.cc
file/system_dir.cc
file/system_imgui_config.cc
file/system_logger.cc
file/system_native_file.cc
)
target_link_libraries(nf7
PRIVATE
glew
glfw
imgui
imnodes
implot
linalg.h
luajit
source_location
yas
)
# ---- resource compile ----
set(NF7_DEFAULT_ROOT_INC "${NF7_GENERATED_INCLUDE_DIR}/root.nf7.inc")
add_custom_command(
OUTPUT ${NF7_DEFAULT_ROOT_INC}
DEPENDS nf7-init
COMMAND $<TARGET_FILE:nf7-init> > ${NF7_DEFAULT_ROOT_INC}
COMMENT "generating root.nf7..."
VERBATIM
)
target_sources(nf7 PRIVATE ${NF7_DEFAULT_ROOT_INC})