Changeset 6:a3ef33a8694a in lemon-benchmark
- Timestamp:
- 11/26/10 19:23:47 (14 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 5 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r5 r6 62 62 ) 63 63 64 ## Here we define an executable target. Its name is 'lemon-project' and65 ## is compiled from 'main.cc'. You can add more source files separated66 ## with whitespaces (including newlines). If you want to build more67 ## executables, simple repeat (and edit) the following ADD_EXECUTABLE and68 ## TARGET_LINK_LIBRARIES statements.69 70 ADD_EXECUTABLE(lemon-project main.cc)71 TARGET_LINK_LIBRARIES(lemon-project ${LEMON_LIBRARIES})72 73 ## This tells cmake to install 'lemon-project' to $PREFIX/bin when74 ## 'make install' is executed. You can give more targets separated75 ## by whitespaces.76 77 INSTALL(78 TARGETS lemon-project79 RUNTIME DESTINATION bin80 COMPONENT bin81 )82 83 64 ## Sometimes MSVC overwhelms you with compiler warnings which are impossible to 84 65 ## avoid. Then comment out these sections. Normally you won't need it as the … … 103 84 104 85 ADD_SUBDIRECTORY(doc) 86 87 ADD_SUBDIRECTORY(generators/netgen) 105 88 106 89 #######################################################################
Note: See TracChangeset
for help on using the changeset viewer.