blob: f20d2f3fac90c517b20d0946aec9fa326b36c5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
set(PROJ_SRC proj.c
gen_cheb.c
p_series.c)
source_group("Source Files\\Bin" FILES ${PROJ_SRC})
if(WIN32)
set(PROJ_SRC ${PROJ_SRC} emess.c)
endif(WIN32)
#Executable
add_executable(binproj ${PROJ_SRC})
set_target_properties(binproj
PROPERTIES
OUTPUT_NAME proj)
target_link_libraries(binproj ${PROJ_LIBRARIES})
install(TARGETS binproj
RUNTIME DESTINATION ${BINDIR})
|