mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
21 lines
283 B
CMake
21 lines
283 B
CMake
|
set(MWINIIMPORT
|
||
|
main.cpp
|
||
|
importer.cpp
|
||
|
)
|
||
|
|
||
|
set(MWINIIMPORT_HEADER
|
||
|
importer.hpp
|
||
|
)
|
||
|
|
||
|
source_group(launcher FILES ${MWINIIMPORT} ${MWINIIMPORT_HEADER})
|
||
|
|
||
|
add_executable(mwiniimport
|
||
|
${MWINIIMPORT}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(mwiniimport
|
||
|
${Boost_LIBRARIES}
|
||
|
components
|
||
|
)
|
||
|
|