28 lines
341 B
CMake
28 lines
341 B
CMake
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
add_executable(nost-pack pack.cpp)
|
|
|
|
target_link_libraries(
|
|
nost-pack
|
|
Qt5::Widgets
|
|
OxClArgs
|
|
OxFS
|
|
OxStd
|
|
OxMetalClaw
|
|
NostalgiaCommon
|
|
NostalgiaCore
|
|
NostalgiaPack
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
nost-pack
|
|
RUNTIME DESTINATION
|
|
bin
|
|
)
|
|
|
|
|
|
add_subdirectory(lib)
|
|
add_subdirectory(pack)
|