> Hi everybody,
> I´d like to build a mixed language programm with CMake,
> more specifically, I have a C++ and a Fortran90 source file
> I want to link:
> tp500main.cxx and electro1.f90
Did you try the following?
PROJECT(TEST Fortran)
SET(TEST_SRCS
tp500main.cxx
electro1.f90
)
ADD_EXECUTABLE(testExe ${TEST_SRCS})
Denis
_______________________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Please keep messages on-topic and check the CMake FAQ at:
http://www.cmake.org/Wiki/CMake_FAQ
Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake