You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
283 B
CMake
21 lines
283 B
CMake
13 years ago
|
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
|
||
|
)
|
||
|
|